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.
41 lines
1.2 KiB
41 lines
1.2 KiB
|
6 days ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
|
||
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
|
||
|
|
https://jakarta.ee/xml/ns/jakartaee/web-app_6_0.xsd"
|
||
|
|
version="6.0">
|
||
|
|
|
||
|
|
<display-name>学生信息管理系统</display-name>
|
||
|
|
|
||
|
|
<!-- 欢迎页面 -->
|
||
|
|
<welcome-file-list>
|
||
|
|
<welcome-file>index.jsp</welcome-file>
|
||
|
|
</welcome-file-list>
|
||
|
|
|
||
|
|
<!-- JSP配置 -->
|
||
|
|
<jsp-config>
|
||
|
|
<jsp-property-group>
|
||
|
|
<url-pattern>*.jsp</url-pattern>
|
||
|
|
<el-ignored>false</el-ignored>
|
||
|
|
<page-encoding>UTF-8</page-encoding>
|
||
|
|
<scripting-invalid>false</scripting-invalid>
|
||
|
|
</jsp-property-group>
|
||
|
|
</jsp-config>
|
||
|
|
|
||
|
|
<!-- 错误页面 -->
|
||
|
|
<error-page>
|
||
|
|
<error-code>404</error-code>
|
||
|
|
<location>/error.jsp</location>
|
||
|
|
</error-page>
|
||
|
|
<error-page>
|
||
|
|
<error-code>500</error-code>
|
||
|
|
<location>/error.jsp</location>
|
||
|
|
</error-page>
|
||
|
|
|
||
|
|
<!-- Session超时设置(分钟) -->
|
||
|
|
<session-config>
|
||
|
|
<session-timeout>30</session-timeout>
|
||
|
|
</session-config>
|
||
|
|
|
||
|
|
</web-app>
|