Struts2基于注解的Action配置

本文介绍了如何在Struts2中使用注解进行Action配置,包括web.xml中的filter配置,struts.xml中的常量设置,以及Action类上的注解应用。通过注解可以简化配置,实现模型驱动,便于接收和处理页面传值。调用示例:localhost:8080/struts_demo/user/userAction!reg.action。
摘要由CSDN通过智能技术生成

1· 既然我们开发的是web项目所以web.xml文件时必不可少的

在web.xml 中配置拦截用户请求的 filter拦截用户的所有的请求并且初始化 struts.xml文件

<filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>

<filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>

</filter-mapping>


2·使用注解的方式配置struts就需要引入一个jar包

虽然说是零配置但是struts.xml还是少不了的配置如下:

    <!-- 指定由spring负责action对象的创建 -->
    <constant name="struts.objectFactory" value="spring" />
    <!--

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值