博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Struts2默认Action
阅读量:5096 次
发布时间:2019-06-13

本文共 1634 字,大约阅读时间需要 5 分钟。

默认Action,所有未找到路径显示error.jsp页面。

<default-action-ref name="index"></default-action-ref>

<action name="index">
   <result>/error.jsp</result>
</action>

 

package com.action;import javax.servlet.ServletContext;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.apache.struts2.interceptor.ServletRequestAware;import org.apache.struts2.interceptor.ServletResponseAware;import org.apache.struts2.util.ServletContextAware;import com.opensymphony.xwork2.ActionSupport;public class HelloWord extends ActionSupport implements ServletRequestAware, ServletResponseAware,ServletContextAware{    public String add(){        return "add";    }        public String update(){        return "update";    }        @Override    public String execute() throws Exception{        System.out.println("执行action");        return SUCCESS;    }    @Override    public void setServletResponse(HttpServletResponse response) {        // TODO Auto-generated method stub            }    @Override    public void setServletRequest(HttpServletRequest request) {        // TODO Auto-generated method stub            }    @Override    public void setServletContext(ServletContext context) {        // TODO Auto-generated method stub            }}

struts.xml

/error.jsp
/result.jsp
/{1}.jsp
/{1}.jsp

 

转载于:https://www.cnblogs.com/smilelily/p/5704208.html

你可能感兴趣的文章
Hmailserver搭建邮件服务器
查看>>
django之多表查询-2
查看>>
快速幂
查看>>
改善C#公共程序类库质量的10种方法
查看>>
AIO 开始不定时的抛异常: java.io.IOException: 指定的网络名不再可用
查看>>
MyBaits动态sql语句
查看>>
HDU4405(期望DP)
查看>>
拉格朗日乘子法 那些年学过的高数
查看>>
vs code 的便捷使用
查看>>
Spring MVC @ResponseBody返回中文字符串乱码问题
查看>>
用户空间与内核空间,进程上下文与中断上下文[总结]
查看>>
JS 中的跨域请求
查看>>
JAVA开发环境搭建
查看>>
mysql基础语句
查看>>
Oracle中的rownum不能使用大于>的问题
查看>>
[Data Structure & Algorithm] 有向无环图的拓扑排序及关键路径
查看>>
cassandra vs mongo (1)存储引擎
查看>>
Visual Studio基于CMake配置opencv1.0.0、opencv2.2
查看>>
Vue音乐项目笔记(三)
查看>>
遍历Map对象
查看>>