Struts2改变后缀名

在struts.xml中加入节点

<constant name="struts.action.extension" value="do" />

 value可以为任意值;还可以设置为几个值并列,用逗号隔开,这样几个后缀请求都有效。

如:

<constant name="struts.action.extension" value="do,jsp,action,html" />

 

我的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>
	<package name="default" extends="struts-default">
		<action name="login" class="org.login.action.LoginAction">
            <result>/manage/success.jsp</result>
            <result name="error">/manage/error.jsp</result>
        </action>		
	</package>
	<constant name="struts.action.extension" value="do,html" />
</struts>

 

你可能感兴趣的:(apache,html,xml,jsp,struts)