ssm 框架配置 web.xml

一、配置web.xml


 
 
    contextConfigLocation
    classpath:Spring/spring-context.xml
 

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

 

 
    CharacterEncodingFilter
    /*
 

 
 
    org.springframework.web.context.ContextLoaderListener
 

 
 
    dispatcherServlet
    org.springframework.web.servlet.DispatcherServlet
   
      spring mvc 配置文件
      contextConfigLocation
      classpath:Spring/spring-mvc.xml
   

    1
 

 
    dispatcherServlet
    *.action
 

 
 
    log4jConfigLocation
    classpath:config/log4j.properties
 

 
    log4jRefreshInterval
    6000
 

 
    org.springframework.web.util.Log4jConfigListener
 

 
 
    /student/list.action
 

你可能感兴趣的:(ssm 框架配置 web.xml)