jsp 自定义函数 调用时包 在类中找不到这个方法
3 回答
江户川乱折腾
TA贡献1851条经验 获得超5个赞
代码:
public class TagAction extends ActionSupport
{
//封装用户请求参数的author属性
private String author;
//省略author属性的setter和getter方法
...
//定义第一个处理逻辑
public String execute() throws Exception
{
return "done";
}
//定义第二个处理逻辑
public String login() throws Exception
{
ActionContext.getContext().
put("author", getAuthor());
return "done";
}
}
添加回答
举报
0/150
提交
取消