ssm搭建(spring+springmvc+mybatis+maven)之web.xml

web.xml



  ssmStudy
  
    index.jsp
  
  
  
        contextConfigLocation
        classpath:applicationContext.xml
  
  
    log4jConfigLocation
    classpath::log4j.properties
  
  
   org.springframework.web.util.Log4jConfigListener


  
    org.springframework.web.context.ContextLoaderListener
  
  
  
    shiroFilter
    org.springframework.web.filter.DelegatingFilterProxy
    
        targetFilterLifecycle
        true
    
    
        targetBeanName
        shiroFilter
    
  
  
    shiroFilter
    /*
  
  
 
    springmvc
    org.springframework.web.servlet.DispatcherServlet
    
        contextConfigLocation
        classpath:spring-mvc.xml
    
    1
    true
  
  
    springmvc
    /
  
   
  
    DruidStatView
    com.alibaba.druid.support.http.StatViewServlet
    
      resetEnable
      true
    
    
      loginUsername
      username
    
    
      loginPassword
      password
    
  
  
    DruidStatView
    /druid/*
  
  
  
    CharacterEncodingFilter
    org.springframework.web.filter.CharacterEncodingFilter
    
        encoding
        utf-8
    
  
  
    CharacterEncodingFilter
    /*
  

demo地址:https://download.csdn.net/download/chc183/10942701

你可能感兴趣的:(ssm搭建(spring+springmvc+mybatis+maven)之web.xml)