开发后端
This commit is contained in:
27
企业级管理系统/java/AdminSys/target/AdminSys/WEB-INF/web.xml
Normal file
27
企业级管理系统/java/AdminSys/target/AdminSys/WEB-INF/web.xml
Normal file
@@ -0,0 +1,27 @@
|
||||
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">
|
||||
<display-name>Archetype Created Web Application</display-name>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>springmvc</servlet-name>
|
||||
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
||||
<init-param>
|
||||
<param-name>contextConfigLocation</param-name>
|
||||
<param-value>classpath:spring.xml</param-value>
|
||||
</init-param>
|
||||
<load-on-startup>1</load-on-startup>
|
||||
</servlet>
|
||||
<servlet-mapping>
|
||||
<servlet-name>springmvc</servlet-name>
|
||||
<url-pattern>*.do</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<filter>
|
||||
<filter-name>cros-filter</filter-name>
|
||||
<filter-class>com.cpicxim.web.filters.cros.CrosFilter</filter-class>
|
||||
</filter>
|
||||
<filter-mapping>
|
||||
<filter-name>cros-filter</filter-name>
|
||||
<url-pattern>*.do</url-pattern>
|
||||
</filter-mapping>
|
||||
|
||||
</web-app>
|
5
企业级管理系统/java/AdminSys/target/AdminSys/index.jsp
Normal file
5
企业级管理系统/java/AdminSys/target/AdminSys/index.jsp
Normal file
@@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
<h2>Hello World!</h2>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,4 @@
|
||||
#Created by Apache Maven 3.8.6
|
||||
artifactId=AdminSys
|
||||
groupId=com.cpicxim
|
||||
version=1.0-SNAPSHOT
|
@@ -0,0 +1,2 @@
|
||||
com\cpicxim\myutils\account\P13AccountCheck.class
|
||||
com\cpicxim\web\filters\CrosFilter.class
|
@@ -0,0 +1,2 @@
|
||||
F:\练手代码\vue-learning\企业级管理系统\java\AdminSys\src\main\java\com\cpicxim\myutils\account\P13AccountCheck.java
|
||||
F:\练手代码\vue-learning\企业级管理系统\java\AdminSys\src\main\java\com\cpicxim\web\filters\CrosFilter.java
|
Reference in New Issue
Block a user