Struts2.2 Annotation

Struts2.2 Annotation 注解配置也叫Zero Configuration(零配置),它省去了写xml文件的麻烦,可以直接在类叫进行配置,不用在java文件和xml文件中来回切换。annotation所需要的包,在Struts2.2中是 struts2-convention-plugin-2.2.1.jar 这个包.

第一步在web.xml里面写上这样的配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    version="2.5"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee   http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>
            org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
        <!-- 这里配置struts的action扫描路径 -->
        <init-param>
            <param-name>actionPackages</param-name>
            <param-value>com.action</param-value>
        </init-param>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>*.action</url-pattern>
    </filter-mapping>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

第二步建立你的Action

根据你上面的配置,把所有的action类放在“你的action的包位置”.action 这个包下面,并建立你的Action类。

 

struts2 annotation所建action命名规则:去掉类名的Action部分。然后将将每个分部的首字母转为小写,用’-’分割。

   a) 举例:TestAction,那么访问的时候就是test.action,或者test.do或者test(这个根据你的后缀配置来定);

   b) 举例:StudentListAction,那么访问的时候就是student-list.action或者同上。

注:比如像StudentListAction类,如果你在地址栏输入StudentList是访问不到的,必须输入student-list

 

第三步,写上Action类的Annotation

  1. @Namespace("/test")  
  2. @Result(name="success", location = "/test/role.jsp", type="redirect")  
  3. public class RoleAction extends ActionSupport{  
  4.         @Override  
  5.     public String execute() throws Exception {  
  6.           
  7.         return SUCCESS;  
  8.     }  



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值