码迷,mamicode.com
首页 > 其他好文 > 详细

Struts2 的入门案例配置

时间:2020-08-01 21:22:03      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:cli   第一个   href   lan   webroot   hide   int   dex   encoding   

1. 导入所需jar包

2. 在classpath下(src下)新建 struts.xml

技术图片
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
    "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
    <package name="p1" extends="struts-default">
        <action name="hello" class="com.ljq.web.action.HelloAction" method="sayHello">
            <result name="success">/success.jsp</result>
        </action>
    </package>
</struts>
View Code

3. 在web.xml 中配置过滤器,在标签<display-name>结束后,添加:

  <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>

4. 写acton类 com.ljq.web.action.HelloAction

package com.ljq.web.action;

public class HelloAction {
    /*
     * 动作方法:1、public 2、返回String 3、无参数
     *  函数名称 、返回值  与 struts.xml 中的配置对应
     */
    public String sayHello(){
        System.out.println("hello ...");
        return "success";
    }
}

在 WebContext 或 WebRoot 下 ,写 index.jsp

<%@ page language="java"  pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Struts2的入门案例</title>
</head>
<body>
<%-- 在Struts2中,控制器会默认拦截扩展名为.action的请求(以.action为后缀的url)。除此之外,什么都不写也可以 --%>
    <a href="${pageContext.request.contextPath }/hello.action">struts2 的第一个实例</a>
    <a href="${pageContext.request.contextPath }/hello">struts2 的第一个实例 (不带.action)</a>
</body>
</html>

 

5. 部署tomcat,浏览器浏览

Struts2 的入门案例配置

标签:cli   第一个   href   lan   webroot   hide   int   dex   encoding   

原文地址:https://www.cnblogs.com/htj10/p/13415310.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!