You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://java.sun.com/xml/ns/javaee"
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
|
|
id="WebApp_ID" version="3.0">
|
|
<display-name>JFinal-demo</display-name>
|
|
<welcome-file-list>
|
|
<welcome-file>index.html</welcome-file>
|
|
<welcome-file>index.htm</welcome-file>
|
|
<welcome-file>index.jsp</welcome-file>
|
|
<welcome-file>default.html</welcome-file>
|
|
<welcome-file>default.htm</welcome-file>
|
|
<welcome-file>default.jsp</welcome-file>
|
|
</welcome-file-list>
|
|
|
|
<!-- 添加至 web.xml 1.4 添加 java文件 在项目 src 目录下创建 com.platform.config 包,并在 包下创建 JfinalConfig
|
|
文件, -->
|
|
<filter>
|
|
<filter-name>jfinalF</filter-name>
|
|
<filter-class>com.jfinal.core.JFinalFilter</filter-class>
|
|
<init-param>
|
|
<param-name>configClass</param-name>
|
|
<param-value>com.platform.config.JfinalConfig</param-value>
|
|
</init-param>
|
|
</filter>
|
|
<filter-mapping>
|
|
<filter-name>jfinalF</filter-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</filter-mapping>
|
|
|
|
</web-app> |