码迷,mamicode.com
首页 > Web开发 > 详细

web.xml启动顺序

时间:2017-02-23 15:41:43      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:url   log4j   ftl   资源   struts   模板   文件中   apple   strong   

首先 classpath是指 WEB-INF文件夹下的classes目录 

解释classes含义: 
1.存放各种资源配置文件 eg.init.properties log4j.properties struts.xml 
2.存放模板文件 eg.actionerror.ftl 
3.存放class文件 对应的是项目开发时的src目录编译文件 
总结:这是一个定位资源的入口 

如果你知道开发过程中有这么一句话:惯例大于配置 那么也许你会改变你的想法 

对于第二个问题 
这个涉及的是lib和classes下文件访问优先级的问题: lib>classes 
对于性能的影响应该不在这个范畴 

classpath 和 classpath* 区别: 
classpath:只会到你的class路径中查找找文件; 
classpath*:不仅包含class路径,还包括jar文件中(class路径)进行查找.

 

 1   <context-param>
 2     <param-name>contextConfigLocation</param-name>
 3     <param-value>classpath:context/root-context.xml</param-value>
 4   </context-param>
 5   <servlet>
 6     <servlet-name>springMvc</servlet-name>
 7     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
 8     <init-param>
 9       <param-name>contextConfigLocation</param-name>
10       <param-value>classpath*:servlet-context.xml</param-value>
11     </init-param>
12     <load-on-startup>1</load-on-startup>
13   </servlet>
14   <servlet-mapping>
15     <servlet-name>springMvc</servlet-name>
16     <url-pattern>/</url-pattern>
17   </servlet-mapping>

 

web.xml启动顺序

标签:url   log4j   ftl   资源   struts   模板   文件中   apple   strong   

原文地址:http://www.cnblogs.com/loveok-56/p/6433425.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!