首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 互联网 >

Struts2.1 处置未知Action 和访问不存在的页面

2012-07-24 
Struts2.1处理未知Action 和访问不存在的页面你可以配置个默认action,当请求的action不存在时,他就会去找

Struts2.1 处理未知Action 和访问不存在的页面
你可以配置个默认action,当请求的action不存在时,他就会去找默认的action

<default-action-ref name="index"></default-action-ref>          <action name="index">              <result>/default.jsp</result>          </action>  




Struts.xml配个全局的 如
<global-results>   <result name="exception" type="dispatcher">/exception.jsp</result>   </global-results> 


Action Default    Usually, if an action is requested, and the framework can't map the request to an action name, the result will be the usual "404 - Page not found" error. But, if you would prefer that an omnibus action handle any unmatched requests, you can specify a default action. If no other action matches, the default action is used instead.    <package name="Hello" extends="action-default">     <default-action-ref name="UnderConstruction">     <action name="UnderConstruction">     <result>/UnderConstruction.jsp</result>     </action>  

热点排行