From 92b9098cff7be36810355bdf2d2b337afd9aa999 Mon Sep 17 00:00:00 2001 From: Kane Wang Date: Thu, 25 Aug 2022 16:06:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=9D=E5=AD=98=E8=BF=9B=E5=BA=A6=EF=BC=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../filter-test/.vscode/settings.json | 3 + servlet-filter/filter-test/pom.xml | 74 +++++++++++++++++++ .../main/java/com/cpic/xim/FilterTest.java | 17 +++++ .../src/main/webapp/WEB-INF/web.xml | 6 ++ 4 files changed, 100 insertions(+) create mode 100644 servlet-filter/filter-test/.vscode/settings.json create mode 100644 servlet-filter/filter-test/pom.xml create mode 100644 servlet-filter/filter-test/src/main/java/com/cpic/xim/FilterTest.java create mode 100644 servlet-filter/filter-test/src/main/webapp/WEB-INF/web.xml diff --git a/servlet-filter/filter-test/.vscode/settings.json b/servlet-filter/filter-test/.vscode/settings.json new file mode 100644 index 0000000..e0f15db --- /dev/null +++ b/servlet-filter/filter-test/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "java.configuration.updateBuildConfiguration": "automatic" +} \ No newline at end of file diff --git a/servlet-filter/filter-test/pom.xml b/servlet-filter/filter-test/pom.xml new file mode 100644 index 0000000..eaccd14 --- /dev/null +++ b/servlet-filter/filter-test/pom.xml @@ -0,0 +1,74 @@ + + + + 4.0.0 + + com.cpic.xim + filter-test + 1.0-SNAPSHOT + war + + filter-test Maven Webapp + + http://www.example.com + + + UTF-8 + 1.7 + 1.7 + + + + + junit + junit + 4.11 + test + + + jakarta.servlet + jakarta.servlet-api + 5.0.0 + system + ${pom.basedir}/src/main/webapp/WEB-INF/lib/servlet-api.jar + + + + + filter-test + + + + + maven-clean-plugin + 3.1.0 + + + + maven-resources-plugin + 3.0.2 + + + maven-compiler-plugin + 3.8.0 + + + maven-surefire-plugin + 2.22.1 + + + maven-war-plugin + 3.2.2 + + + maven-install-plugin + 2.5.2 + + + maven-deploy-plugin + 2.8.2 + + + + + \ No newline at end of file diff --git a/servlet-filter/filter-test/src/main/java/com/cpic/xim/FilterTest.java b/servlet-filter/filter-test/src/main/java/com/cpic/xim/FilterTest.java new file mode 100644 index 0000000..0d07dee --- /dev/null +++ b/servlet-filter/filter-test/src/main/java/com/cpic/xim/FilterTest.java @@ -0,0 +1,17 @@ + +/* + * @Author: Kane + * @Date: 2022-08-25 15:56:37 + * @LastEditors: Kane + * @LastEditTime: 2022-08-25 15:57:04 + * @FilePath: \filter-test\src\main\java\com\cpic\xim\FilterTest.java + * @Description: + * Copyright (c) ${2022} by Kane, All Rights Reserved. + */ +package com.cpic.xim; + + +public class FilterTest +{ + +} diff --git a/servlet-filter/filter-test/src/main/webapp/WEB-INF/web.xml b/servlet-filter/filter-test/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..d032459 --- /dev/null +++ b/servlet-filter/filter-test/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,6 @@ + + + + Servlet 过滤器学习! + + \ No newline at end of file