springmvc中的静态资源映射配置

web.xml配置



	taotao-sso
	
		index.html
		index.htm
		index.jsp
		default.html
		default.htm
		default.jsp
	
	
	
		contextConfigLocation
		classpath:spring/applicationContext-*.xml
	
	
		org.springframework.web.context.ContextLoaderListener
	

	
	
		CharacterEncodingFilter
		org.springframework.web.filter.CharacterEncodingFilter
		
			encoding
			utf-8
		
	
	
		CharacterEncodingFilter
		/*
	


	
	
		taotao-sso
		org.springframework.web.servlet.DispatcherServlet
		
		
			contextConfigLocation
			classpath:spring/springmvc.xml
		
		1
	
	
	
		taotao-sso
		/
	


可以看见前端控制器的拦截条件是“/”,所以为了避免浏览器在请求静态资源时,被前端控制器拦截被误认为是访问某个Handler。这里要在springmvc中配置静态资源映射。



	



你可能感兴趣的:(springmvc)