在我的Spring webapp中,我已经注释了我的调度程序servlet:
<tx:annotation-driven />
<mvc:annotation-driven />
<context:annotation-config />
<context:component-scan base-package="com.myapp.package.controller" />
<mvc:resources location="/css/" mapping="/css/**" />
<mvc:resources location="/script/" mapping="/script/**" />
<mvc:resources location="/img/" mapping="/img/**" />
<mvc:resources location="/fonts/" mapping="/fonts/**" />
<!-- Uso de Tiles -->
<bean id="tilesConfigurer" class="org.springframework.web.servlet.view.tiles2.TilesConfigurer">
<property name="definitions">
<list>
<value>/WEB-INF/tiles-defs.xml</value>
</list>
</property>
</bean>
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.tiles2.TilesView" />
</bean>
现在通过在log4j.properties上激活spring的调试模式,我检查了每个资源(甚至是静态资源)都通过DispatcherServlet,我甚至不知道它是否是预期的行为。事实上,通过调试processRequest方法,我已经检查过这个方法在某种程度上导致每个网页的服务器耗费很高,我的猜测是每个静态资源都被这个方法保存在内存中。
这是静态资源的日志输出,例如jquery脚本库:
14:14:23,569 DEBUG RequestMappingHandlerMapping:220 - Looking up handler method for path /script/jquery/jquery-1.9.1.min.js
14:14:23,575 DEBUG RequestMappingHandlerMapping:230 - Did not find handler method for [/script/jquery/jquery-1.9.1.min.js]
14:14:23,576 DEBUG SimpleUrlHandlerMapping:169 - Matching patterns for request [/script/jquery/jquery-1.9.1.min.js] are [/script/**]
14:14:23,576 DEBUG SimpleUrlHandlerMapping:194 - URI Template variables for request [/script/jquery/jquery-1.9.1.min.js] are {}
14:14:23,576 DEBUG SimpleUrlHandlerMapping:124 - Mapping [/script/jquery/jquery-1.9.1.min.js] to HandlerExecutionChain with handler [org.springframework.web.servlet.resource.ResourceHttpRequestHandler@101f75b5] and 1 interceptor
14:14:23,576 DEBUG DispatcherServlet:912 - Last-Modified value for [/myapp/script/jquery/jquery-1.9.1.min.js] is: -1
14:14:23,576 DEBUG ResourceHttpRequestHandler:173 - Trying relative path [jquery/jquery-1.9.1.min.js] against base location: ServletContext resource [/script/]
14:14:23,577 DEBUG ResourceHttpRequestHandler:178 - Found matching resource: ServletContext resource [/script/jquery/jquery-1.9.1.min.js]
14:14:23,577 DEBUG ResourceHttpRequestHandler:132 - Determined media type 'application/javascript' for ServletContext resource [/script/jquery/jquery-1.9.1.min.js]
据我所知,它正确地将其识别为静态资源。
我的配置是否合适?是不是应该直接提供静态资源而不是通过Dispatcher Servlet?可能是每个资源都被保存在内存中以便将其提供给响应吗?
答案 0 :(得分:3)
<mvc:resources location="/css/" mapping="/css/**" />
意味着调度程序servlet确实会为/css
中的/css/
提供以<mvc:default-servlet-handler/>
开头的任何URL的静态资源。例如,这允许从类路径中提供静态资源,而不是从webapp中的静态文件提供静态资源。
如果您不希望Spring servlet提供静态资源,请执行the documentation indicates:
{{1}}
答案 1 :(得分:1)
如果你已经用Spring配置了一些东西,那么Spring会处理它。
当您使用此元素提供配置时
<mvc:resources location="/css/" mapping="/css/**" />
Spring将SimpleUrlHandlerMapping
bean注册为mapping
的指定ResourceHttpRequestHandler
和location
之间的映射。
DispatcherServlet
注册它在HandlerMapping
中找到的所有ApplicationContext
个bean。其中一个将是上面的SimpleUrlHandlerMapping
。如果SimpleUrlHandlerMapping
可以处理的请求到达,DispatcherServlet
将使用它。然后,SimpleUrlHandlerMapping
将委托给将为静态资源提供服务的相应ResourceHttpRequestHandler
。
可能是每个资源都在内存中保存 回应?
不,ResourceHttpRequestHandler
不会缓存资源的内容。