struts 通配符的使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts 通配符的使用相关的知识,希望对你有一定的参考价值。

1.新建一个web项目,点击项目右击添加struts在项目中。

2.在项目中新建一个包,新建一个class并继承actionsupport。代码如下:

package com.cn.eud;

import com.opensymphony.xwork2.ActionSupport;

public class StudentAction extends ActionSupport {
public String add() {
return SUCCESS;}
public String delete() {
return SUCCESS;
}}

3.在webwoot中新建两个jsp页面。在jsp页面中一定要加上 <%@taglib uri="/struts-tags" prefix="s" %>这句话,否则会出现404路劲错误。

4.在配置struts.xml时的action时一定要区分大小写。

5.web.xml中配置。

6.练习太少了,没有认真去独立思考问题。

以上是关于struts 通配符的使用的主要内容,如果未能解决你的问题,请参考以下文章

struts2.5+框架使用通配符与动态方法

struts2使用通配符调用action

struts2 通配符 wildcard的使用问题

Struts2 02--通配符

Struts2 Action中动态方法调用通配符的使用

struts2.5.2 通配符问题_亲测有用