SpringMVC的l配置详解
spring是⽬前最流⾏的框架。创建java web项⽬时,我们⾸先会遇到的配置⽂件就是l,这是javaweb为我们封装的逻辑,不在今天的研究中。下⾯我们将简单讲讲l中的配置。⼀、⼀个空的l
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns:xsi="/2001/XMLSchema-instance"
xmlns="java.sun/xml/ns/javaee" xmlns:web="java.sun/xml/ns/javaee/web-app_3_0.xsd"
xsi:schemaLocation="java.sun/xml/ns/javaee java.sun/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID">
</web-app>
⼆、标签介绍
context-param > listener > filter > servlet
1、 <display-name>Archetype Created Web Application</display-name>
display-name 是标识项⽬的名称,这个不是很常⽤,可有可⽆的,或者说不需要我们去在意的东西。
2、 <context-param>
<context-param>
<param-name>webAppRootKey</param-name>
<param-value>60000</param-value>
</context-param>
context-param 是l⾸先加载的标签,其下⼦标签有param-name和param-value.
此所设定的参数,在JSP⽹页中可以使⽤下列⽅法来取得:
${initParam.webAppRootKey}
若在Servlet可以使⽤下列⽅法来获得:
复制代码代码如下:
String param_name=getServletContext().getInitParamter(“webAppRootKey”);
3、listener
<listener>
<listener-class>org.t.request.RequestContextListener</listener-class>
</listener>
listenter在项⽬开始的时候就注⼊进来,尽在context-param之后,所以正常我们将spring配置在listener 中,这样⽅法spring 初始化相关的bean。
4、filter
<filter>
<filter-name>CharacterEncodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>CharacterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
5、servlet
<servlet>
<!-- 配置DispatcherServlet -->
<servlet-name>springMvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 指定spring mvc配置⽂件位置不指定使⽤默认情况 -->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:l</param-value>
</init-param>
<!-- 设置启动顺序 -->
<load-on-startup>1</load-on-startup>
</servlet>
<!-- ServLet 匹配映射 -->
<servlet-mapping>
<servlet-name>springMvc</servlet-name>
<url-pattern>*.zxh</url-pattern>
</servlet-mapping>
servlet和filter类似,需要先指定servlet对应的class类,然后将这个类和utl路径请求地址进⾏映射。这⾥不多说了。
以上就是l⽂件中出现最多的⼏个标签。其他的⽐如:
6、欢迎页
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
</welcome-file-list>
7、错误页
<!-- 后台程序异常错误跳转页⾯ -->
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/views/error.jsp</location>
</error-page>
<!-- 500跳转页⾯-->
<error-page>
<error-code>500</error-code>
<location>/views/500.jsp</location>
</error-page>
<!-- 404跳转页⾯ -->
<error-page>
<error-code>404</error-code>
<location>/views/404.jsp</location>
</error-page>
三、⽰例
1、spring 框架解决字符串编码问题:过滤器 CharacterEncodingFilter(filter-name)
2、在l配置ContextLoaderListener(listener-class)
ContextLoaderListener的作⽤就是启动Web容器时,⾃动装配ApplicationContext的配置信息。因为它
实现了ServletContextListener这个接⼝,在l配置这个,启动容器时,就会默认执⾏它实现的⽅法。
3、部署applicationContext的xml⽂件:contextConfigLocation(context-param下的param-name)
4、DispatcherServlet是前置控制器,配置在l⽂件中的。拦截匹配的请求,Servlet拦截匹配规则要⾃已定义,把拦截下来的请求,依据某某规则分发到⽬标Controller(我们写的Action)来处理。
DispatcherServlet(servlet-name、servlet-class、init-param、param-name(contextConfigLocation)、param-value)
在DispatcherServlet的初始化过程中,框架会在web应⽤的 WEB-INF⽂件夹下寻名为[servlet-name]-l 的配置⽂件,⽣成⽂件中定义的bean
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="java.sun/xml/ns/javaee"
xmlns:xsi="/2001/XMLSchema-instance"
xsi:schemaLocation="java.sun/xml/ns/javaee java.sun/xml/ns/javaee/web-app_3_0.xsd">
<!-- 在Spring框架中是如何解决从页⾯传来的字符串的编码问题的呢?
下⾯我们来看看Spring框架给我们提供过滤器CharacterEncodingFilter
这个过滤器就是针对于每次浏览器请求进⾏过滤的,然后再其之上添加了⽗类没有的功能即处理字符编码。
其中encoding⽤来设置编码格式,forceEncoding⽤来设置是否理会 CharacterEncoding()⽅法,设置为true则强制覆盖之前的编码格式。-->
<filter>
<filter-name>characterEncodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>characterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- 项⽬中使⽤Spring 时,l配置⽂件中并没有BeanFactory,要想在业务层中的class ⽂件中直接引⽤Spring容器管理的bean可通过以下⽅式-->
<!--1、在l配置ContextLoaderListener-->
<!--ContextLoaderListener的作⽤就是启动Web容器时,⾃动装配ApplicationContext的配置信息。因为它实现了ServletContextListener这个接⼝,在l配置这个,启动容器时,就会默认执⾏它实现的⽅法。
在ContextLoaderListener中关联了ContextLoader这个类,所以整个加载配置过程由ContextLoader来完成。
它的API说明
第⼀段说明ContextLoader可以由 ContextLoaderListener和ContextLoaderServlet⽣成。
如果查看ContextLoaderServlet的API,可以看到它也关联了ContextLoader这个类⽽且它实现了HttpServlet这个接⼝
第⼆段,ContextLoader创建的是 XmlWebApplicationContext这样⼀个类,它实现的接⼝是WebApplicationContext->ConfigurableWebApplicationContext->ApplicationContext->
BeanFactory这样⼀来spring中的所有bean都由这个类来创建
IUploaddatafileManager uploadmanager = (IUploaddatafileManager) CurrentWebApplicationContext().getBean("uploadManager");
-->
<listener>
<listener-class>org.t.ContextLoaderListener</listener-class>
</listener>
<!--2、部署applicationContext的xml⽂件-->
<!--如果在l中不写任何参数配置信息,默认的路径是"/l,
在WEB-INF⽬录下创建的xml⽂件的名称必须是l。
如果是要⾃定义⽂件名可以在l⾥加⼊contextConfigLocation这个context参数:
在<param-value> </param-value>⾥指定相应的xml⽂件名,如果有多个xml⽂件,可以写在⼀起并以“,”号分隔。
也可以这样applicationContext-*.xml采⽤通配符,⽐如这那个⽬录下有l,
在ContextLoaderListener中关联了ContextLoader这个类,所以整个加载配置过程由ContextLoader来完成。-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:l</param-value>
</context-param>
<!--如果你的DispatcherServlet拦截"/",为了实现REST风格,拦截了所有的请求,那么同时对*.js,*.jpg等静态⽂件的访问也就被拦截了。-->
<!--⽅案⼀:激活Tomcat的defaultServlet来处理静态⽂件-->
<!--要写在DispatcherServlet的前⾯,让 defaultServlet先拦截请求,这样请求就不会进⼊Spring了,我想性能是最好的吧。-->
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.css</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.swf</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.gif</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.jpg</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.png</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.js</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.xml</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.json</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.map</url-pattern>
</servlet-mapping>
<!--使⽤Spring MVC,配置DispatcherServlet是第⼀步。DispatcherServlet是⼀个Servlet,,所以可以配置多个DispatcherServlet-->
<!--DispatcherServlet是前置控制器,配置在l⽂件中的。拦截匹配的请求,Servlet拦截匹配规则要⾃已定义,把拦截下来的请求,依据某某规则分发到⽬标Controller(我们写的Action)来处理。-->
<servlet>
<servlet-name>DispatcherServlet</servlet-name><!--在DispatcherServlet的初始化过程中,框架会在web应⽤的 WEB-INF⽂件夹下寻名为[servlet-name]-l 的配置⽂件,⽣成⽂件中定义的bean。-->
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--指明了配置⽂件的⽂件名,不使⽤默认配置⽂件名,⽽使⽤l配置⽂件。-->
<init-param>
<param-name>contextConfigLocation</param-name>
<!--其中<param-value>**.xml</param-value> 这⾥可以使⽤多种写法-->
<!--1、不写,使⽤默认值:/WEB-INF/<servlet-name>-l-->
<!--2、<param-value>/WEB-INF/l</param-value>-->
<!--3、<param-value>classpath*:l</param-value>-->
<!--4、多个值⽤逗号分隔-->
<param-value>classpath:l</param-value>
</init-param>
<load-on-startup>1</load-on-startup><!--是启动顺序,让这个Servlet随Servletp容器⼀起启动。-->
</servlet>
<servlet-mapping>
<!--这个Servlet的名字是dispatcher,可以有多个DispatcherServlet,是通过名字来区分的。每⼀个DispatcherServlet有⾃⼰的WebApplicationContext上下⽂对象。同时保存的ServletContext中和Request对象中.-->
<!--ApplicationContext是Spring的核⼼,Context我们通常解释为上下⽂环境,我想⽤“容器”来表述它更容易理解⼀些,ApplicationContext则是“应⽤的容器”了:P,Spring把Bean放在这个容器中,在需要的时候,⽤getBean⽅法取出--> <servlet-name>DispatcherServlet</servlet-name>
<!--Servlet拦截匹配规则可以⾃已定义,当映射为@RequestMapping("/user/add")时,为例,拦截哪种URL合适?-->
<!--1、拦截*.do、*.htm,例如:/user/add.do,这是最传统的⽅式,最简单也最实⽤。不会导致静态⽂件(jpg,js,css)被拦截。-->
<!--2、拦截/,例如:/user/add,可以实现现在很流⾏的REST风格。很多互联⽹类型的应⽤很喜欢这种风格的URL。弊端:会导致静态⽂件(jpg,js,css)被拦截后不能正常显⽰。 -->
<url-pattern>/</url-pattern> <!--会拦截URL中带“/”的请求。-->
</servlet-mapping>
<welcome-file-list><!--指定欢迎页⾯-->
<welcome-file>login.html</welcome-file>
</welcome-file-list>
<error-page> <!--当系统出现404错误,跳转到页⾯nopage.html-->
<error-code>404</error-code>
<location>/nopage.html</location>
</error-page>
<error-page> <!--当系统出现java.lang.NullPointerException,跳转到页⾯error.html-->
<exception-type>java.lang.NullPointerException</exception-type>
<location>/error.html</location>
</error-page>
<session-config><!--会话超时配置,单位分钟-->
<session-timeout>360</session-timeout>
</session-config>
</web-app>
四、spring加载
通过上⾯的了解,我们可以看出spring核⼼配置⽂件就是listener那块。在监听之前我们已经通过context-param将spring配置⽂件传到上下⽂中了(application)。下⾯我们就来看看spring是如何⼯作的吧
第⼀步:
点开listener源码,我们发现他有下⾯⼏个⽅法。和继承的关系。我们发现他实现了ContextLoaderListener这个接⼝,这个接⼝在参数设置好之后⾃动执⾏contextInitialized⽅法的。
那么我们来看看contextInitialized⽅法
public WebApplicationContext initWebApplicationContext(ServletContext servletContext) {
if (Attribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE) != null) {
throw new IllegalStateException(
"Cannot initialize context because there is already a root application context present - " +
"check whether you have multiple ContextLoader* definitions in l!");
}
Log logger = Log(ContextLoader.class);
servletContext.log("Initializing Spring root WebApplicationContext");
if (logger.isInfoEnabled()) {
logger.info("Root WebApplicationContext: initialization started");
}
long startTime = System.currentTimeMillis();
try {
// Store context in local instance variable, to guarantee that
// it is available on ServletContext shutdown.
if (t == null) {
}
if (t instanceof ConfigurableWebApplicationContext) {
ConfigurableWebApplicationContext cwac = (ConfigurableWebApplicationContext) t;
if (!cwac.isActive()) {
/
/ The context has not yet been refreshed -> provide services such as
// setting the parent context, setting the application context id, etc
if (Parent() == null) {
// The context instance was injected without an explicit parent ->
// determine parent for root web application context, if any.
ApplicationContext parent = loadParentContext(servletContext);
cwac.setParent(parent);
}
configureAndRefreshWebApplicationContext(cwac, servletContext);
}
}
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, t);
ClassLoader ccl = Thread.currentThread().getContextClassLoader();
if (ccl == ClassLoader()) {
currentContext = t;
}
else if (ccl != null) {
currentContextPerThread.put(ccl, t);
}
if (logger.isDebugEnabled()) {
logger.debug("Published root WebApplicationContext as ServletContext attribute with name [" +
WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE + "]");
param name}
if (logger.isInfoEnabled()) {
long elapsedTime = System.currentTimeMillis() - startTime;
logger.info("Root WebApplicationContext: initialization completed in " + elapsedTime + " ms");
}
t;
}
catch (RuntimeException ex) {
<("Context initialization failed", ex);
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, ex);
throw ex;
}
catch (Error err) {
<("Context initialization failed", err);
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, err);
throw err;
}
}
仔细研究官⽅解释,就是在这⾥初始化application,这⾥会⽤到contextClass+contextConfigLocation两个参数,如果contextClass在context-param提供了,我们就会根据这⼀个class去初始化application,很显然我们正常配置都没有配这个,⽽是配置了后者,配置了后者就会去根据contextConfigLocation中提供的配置⽂件去解析然后创建相关的bean和application操作,这个⽅法的最后会执⾏configureAndRefreshWebApplicationContext⽅法。这个⽅法就是在根据contextConfigLocation提供的配置⽂件中创建相关的bean。
五、springMVC 加载
springMVC其实和spring是⼀样的,但是他不⽤再程序开始时访问
<servlet>
<!-- 配置DispatcherServlet -->
<servlet-name>springMvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 指定spring mvc配置⽂件位置不指定使⽤默认情况 -->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:l</param-value>
</init-param>
<!-- 设置启动顺序 -->
<load-on-startup>1</load-on-startup>
</servlet>
<!-- ServLet 匹配映射 -->
<servlet-mapping>
<servlet-name>springMvc</servlet-name>
<url-pattern>*.zxh</url-pattern>
</servlet-mapping>
看DispatcherServlet源码中对contextConfigLocation参数的解释
上⾯明确指出我们这个参数给XmlWebApplicationContext类的,我们在进⼊XmlWebApplicationContext类看看究竟。
这样我们很容易理解为什么springmvc默认的配置⽂件会在l中的吧。
在dispatcherservlet中有⼀个初始化⽅法,这⾥就初始化配置中⼀些东西,⽐如说⽂件上传适配器的配置等等。
protected void initStrategies(ApplicationContext context) {
initMultipartResolver(context);
initLocaleResolver(context);
initThemeResolver(context);
initHandlerMappings(context);
initHandlerAdapters(context);
initHandlerExceptionResolvers(context);
initRequestToViewNameTranslator(context);
initViewResolvers(context);
initFlashMapManager(context);
}
总结
spring+springmvc在配置中主要就是上⾯的两个配置,当然spring的强⼤不是我们⼀两天能够研究来的,
我上⾯只是简单的研究讨论了⼀下。以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论