spring中applicationContex.xml文件

Posted 夏日的微笑

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring中applicationContex.xml文件相关的知识,希望对你有一定的参考价值。

<mvc:resources mapping="/js/**" location="/WEB_INF/js"/>主要用于静态资源的访问.

使用springMVC必须首先在web.xml文件中配置其使用的servlet

<servlet>

  <servlet-name>springmvc</servlet-name>

  <servlet-url></servlet-url>

</servlet>

web.xml中这样的配置<servlet-name>default</servlet-name>表示图片,css,js等静态文件交个默认的servlet进行处理。

  1. <servlet-mapping>   
  2.     <servlet-name>default</servlet-name>  
  3.     <url-pattern>*.jpg</url-pattern>     
  4. </servlet-mapping>    
  5. <servlet-mapping>       
  6.     <servlet-name>default</servlet-name>    
  7.     <url-pattern>*.js</url-pattern>    
  8. </servlet-mapping>    
  9. <servlet-mapping>        
  10.     <servlet-name>default</servlet-name>       
  11.     <url-pattern>*.css</url-pattern>      
  12. </servlet-mapping>    

 

以上是关于spring中applicationContex.xml文件的主要内容,如果未能解决你的问题,请参考以下文章

ApplicationContex是干啥的

有WebService的项目中写applicationContex.xml文件时应注意!!!

Spring简答题

spring Bean

Spring IoC概念

Spring之Aware