Struts2第一个示例
首先,导入struts核心包
1 | <dependency> |
web.xml配置struts2拦截器
1 | <!-- 配置struts2的拦截器 --> |
struts.xml中配置action
1 |
|
创建Action类
1 | /** |
访问
1 | http://localhost:8080/struts/userAction/test.action?user.name=张三 |
首先,导入struts核心包
1 | <dependency> |
web.xml配置struts2拦截器
1 | <!-- 配置struts2的拦截器 --> |
struts.xml中配置action
1 | <?xml version="1.0" encoding="UTF-8"?> |
创建Action类
1 | /** |
访问
1 | http://localhost:8080/struts/userAction/test.action?user.name=张三 |