Struts2 框架 配置

struts.xml配置↓





   
     
        
       
        /WEB-INF/hello.jsp

  

默认情况下,Filter控制器只处理*.action或没有扩展名的请求,只有符合请求才能进入Action调用流程
如果需要修改请求扩展名,可以在struts.xml中追加下面配置


web.xml里的配置↓


    strutsmvc
    
    org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
    
    
        

  

    strutsmvc
    /*


  
    contextConfigLocation
    classpath:Resource/SpringConf.xml
  

Filter查找Action时,按namespace精确匹配,没有会向父路径查找。例如/day01/a/b/hello,会查找namespace=/day01/a/b,没有时会继续查 找/day01/a,再没有会继续查找/day01

你可能感兴趣的:(Struts2 框架 配置)