struts.xml:
<constant name="struts.enable.SlashesInActionNames" value="true"/><constant name="struts.mapper.alwaysSelectFullNamespace" value="false"/><constant name="struts.patternMatcher" value="regex"/>
现在假设
com.example.actions.ViewProfileActionbean具有一个property
username和
execute返回
SUCCESS结果的方法。然后,您可以将 *** 作映射到
"/"配置到程序包的根名称空间中。
<action name="{username}" > <result>/WEB-INF/jsp/profile.jsp</result></action>
您可以使用OGNL在JSP中获得名称
<s:property value="username"/>
还要注意,您应该部署到根上下文以具有
your.domain.com/username映射到您的 *** 作。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)