关于struts2的访问action与根目录文件夹的冲突问题,碉堡了!

关于struts2的访问action与根目录文件夹的冲突问题,碉堡了!_第1张图片

再看struts.xml文件:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
      <constant name="struts.devMode" value="true"/>
      <package name="lee" extends="struts-default">
              <action name="*">
                    <result>/WEB-INF/content/{1}.jsp</result>
              </action>
      </package>
     
</struts>

这样的话,因为那个upload文件夹与http://127.0.0.1:8080/struts2_upload/upload会发生冲突,所以无法到达/WEB-INF/content/upload.jsp

   很是郁闷了一个小时,解决办法,暂时不知道,尽量避免。。

你可能感兴趣的:(关于struts2的访问action与根目录文件夹的冲突问题,碉堡了!)