码迷,mamicode.com
首页 > 编程语言 > 详细

JavaWeb学习:Struts2入门

时间:2020-11-24 12:04:40      阅读:11      评论:0      收藏:0      [点我收藏+]

标签:out   jsp   cat   ati   tty   conf   下载   本质   跳转   

一、Struts2概述

  Struts2:是一个基于MVC设计模式的Web应用框架,它本质相当于一个Servlet,在MVC设计模式中Strust2作为控制器来建立模型与视图的数据交互。

二、搭建Struts2开发环境

  ①、下载Struts2

    官网struts.apache.org 技术图片

      技术图片 

   ②、解压Struts2开发包

    技术图片     

    apps:Struts2提供的应用,war文件:web项目打成war包。直接放入到tomcat可以允许。

    docs:Struts2的开发文档和API

    lib:Strtus2框架的开发的jar包

    src :Struts2的源码

  ③、引入jar包

    打开解压后的struts-2.5.xx\apps,有两个(struts2-showcase.war、struts2-rest-showcase.war--建议解压)war包,修改后缀war变更为zip,使用解压软件解压后找到WEB-INF\lib找到所需jar文件,将jar包copy到eclipse项目中的WebContent/WEB-INF/lib/文件目录下,拷贝完后别忘了把jar添加到Build Path中

    技术图片   

    技术图片

 

 

   ④、将必备的web.xml、struts.xml两个配置文件拷贝出来

    还是以struts2-rest-showcase.war文件为参考, 在WEB-INF下web.xml copy到项目的WebContent/WEB-INF下

      技术图片

    修改web.xml

      struts2.5过滤器类全名称 :org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter

      struts2.3过滤器类全名称 :org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter

<?xml version="1.0" encoding="UTF-8"?>

<web-app id="WebApp_9" version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

    <display-name>Struts 2 Application</display-name>
    <!-- 配置Struts2的核心过滤器 -->
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.jsp</welcome-file>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>

</web-app>

    在WEB-INF/classes下struts.xml copy到 Java Resources/src/,拷贝之后Libraries

      技术图片

 

    修改strut.xml

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
    "http://struts.apache.org/dtds/struts-2.5.dtd">

<struts>
    <!-- Struts xml的配置文件 -->
    <!-- 所有匹配*.action的请求都由struts2处理 -->
    <constant name="struts.action.extension" value="action,," />
    
    <!--新建一个package,name随意,extends自struts-default -->
    <package name="strutsTest" extends="struts-default">
        <!-- 编写action,name为地址栏输入时用的名字,class为class文件的位置 -->
        <action name="hello" class="com.struts2.demo.HelloAction">
            <!-- name 为刚才编写的action类中,execute返回的值       index.jsp的意思是返回到index.jsp页面 -->
            <result name="success">index.jsp</result>
        </action>
    </package>
</struts>

  ⑤、新建一个Action类,继承ActionSupport

public class HelloAction extends ActionSupport {
    @Override
    public String execute() throws Exception {
    System.out.println("进入HelloAction的execute方法... ...");
    return SUCCESS;
    }
}

  ⑥、新建一个index.jsp文件,验证是否跳转

    技术图片

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
    <h1>Hello Strut2</h1>
</body>
</html>

  ⑦、启动服务器

    技术图片

 

      结果:

        技术图片

 

      地址栏输入hello,会进入HelloAction的execute方法中

        技术图片

 

 

 

    

 

JavaWeb学习:Struts2入门

标签:out   jsp   cat   ati   tty   conf   下载   本质   跳转   

原文地址:https://www.cnblogs.com/WarBlog/p/14006943.html

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