SpringMVC的web.xml配置

1.导入SpringMVC的jar包

2.配置web.xml(配置SpringMVC的前端控制器DispatchServlet及定义SpringMVC配置文件的位置)



  SpringMVC_cuowuxx
  
    index.html
    index.htm
    index.jsp
    default.html
    default.htm
    default.jsp
  
  
  
  
  	SpringMVC
  	
  	org.springframework.web.servlet.DispatcherServlet
  	
  	
  		contextConfigLocation
  		classpath:springMVC.xml
  	
  
  
  
  	SpringMVC
  	*.action
  
  
  
  
  	Filter
  	
  	org.springframework.web.filter.CharacterEncodingFilter
  	
  	
  		encoding
  		UTF-8
  	
  
  
  
  	Filter
  	/*
  
  


你可能感兴趣的:(SpringMVC)