首页 > 代码库 > Struts中action访问不到的原因。

Struts中action访问不到的原因。

因为需要在项目中构造restful的链接,action通配符使用/进行分割。但是struts默认不支持反斜杠。

所以需要在Struts.xml配置

<constant name="struts.enable.SlashesInActionNames" value="true"/>

即可使用反斜杠。

Struts中action访问不到的原因。