web.xml

 

web.xml
<?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>springmvc</display-name>
//随意网上档一个,修改下部分(橙色部分,其余文件自动生成的)
//规定springmvc.xml的配置文件名字,比如你规定的dispatcher,名字就为 dispatcher-servlet.xmL,默认的位置为/WEB-INF下
//也可以自己定义<init-param><param-name>contextConfiglocation</param-name><param-value>位置(classpath:表示在src目录下)</param-value></init-param>
//<servlet-mapping>规定,每次在浏览器输入“/”,就要走这个,Dispatcher为springmvc的一个开始的东西。固定的格式
<servlet> <servlet-name>dispatcher</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>dispatcher</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <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-app>

 

上一篇:Ubuntu20使用pre-up/post-up等hook脚本开机加载/关机保存iptables配置


下一篇:wpf DispatcherFrame