详解Struts2中配置默认Action的方法

一、jsp默认设置

1、当访问的Action不存在时,页面会显示错误信息,可以通过配置默认Action处理用户异常的操作;

2。配置方法:

在struts.xml文件中的下添加如下内容:

其中index为默认Action的name属性值;

3、配置默认Action后,相应的namespace下不存在要访问的Action时,自动跳转到默认Action处理。

4、实例

web.xml:



 
 hello.jsp
 
 
 struts2
 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
 
 
 struts2
 /*
 

struts.xml:





 

 
 
 
  
   
  
   /index.jsp
  
 

index.jsp:

<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>



 
 
 Index
 
 
  
 
 
 
 

 
 Welcome to Magci's BLOG!
magci/magc
mgc/magc/magci/123456

二、action默认设置转发


  
  
   
    page_toIndex
    
   
  

  
   /WEB-INF/jsps/index.jsp
   /WEB-INF/jsps/admin/admin_login.jsp

   
   
    action
   
  

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(详解Struts2中配置默认Action的方法)