Java Struts框架开发

发布时间:2024-11-26 14:08:42 作者:小樊
来源:亿速云 阅读:78

Java Struts框架是一个用于创建Web应用程序的开源框架,它基于MVC(Model-View-Controller)设计模式。Struts框架的主要组件包括Action类、FormBean、ActionForm、ActionMapping、视图(JSP页面)和验证框架等。以下是使用Struts框架进行开发的基本步骤:

1. 环境搭建

首先,确保你的开发环境中已经安装了Java JDK和Tomcat服务器。然后,配置你的项目结构,通常包括WEB-INF目录下的lib文件夹和其他必要的资源文件。

2. 创建Struts项目

你可以使用Struts的官方工具struts-2-maven-plugin来创建一个新的Struts项目。在Maven项目的pom.xml文件中添加以下依赖:

<dependencies>
    <dependency>
        <groupId>org.apache.struts</groupId>
        <artifactId>struts2-core</artifactId>
        <version>2.5.26</version>
    </dependency>
    <dependency>
        <groupId>org.apache.struts</groupId>
        <artifactId>struts2-convention-plugin</artifactId>
        <version>2.5.26</version>
    </dependency>
    <dependency>
        <groupId>org.apache.struts</groupId>
        <artifactId>struts2-json-plugin</artifactId>
        <version>2.5.26</version>
    </dependency>
</dependencies>

3. 配置Struts

src/main/resources目录下创建struts.xml文件,这是Struts的核心配置文件。以下是一个简单的配置示例:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <package name="default" extends="struts-default">
        <action name="hello" class="com.example.HelloAction">
            <result>/hello.jsp</result>
        </action>
    </package>
</struts>

4. 创建Action类

src/main/java目录下创建一个包,例如com.example,并在其中创建一个Action类,例如HelloAction.java

package com.example;

import com.opensymphony.xwork2.ActionSupport;

public class HelloAction extends ActionSupport {
    private String message;

    public String execute() {
        message = "Hello, Struts!";
        return SUCCESS;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }
}

5. 创建视图

src/main/webapp/WEB-INF/jsp目录下创建一个JSP页面,例如hello.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Hello Struts</title>
</head>
<body>
    <h1><s:property value="message" /></h1>
</body>
</html>

6. 配置web.xml

src/main/webapp/WEB-INF目录下创建或修改web.xml文件,配置Struts过滤器:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
                             http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">

    <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>
</web-app>

7. 运行项目

将项目部署到Tomcat服务器上,并访问http://localhost:8080/your-app-context/hello,你应该能看到显示“Hello, Struts!”的页面。

总结

以上步骤涵盖了使用Java Struts框架进行开发的基本流程。通过这些步骤,你可以创建一个简单的Web应用程序,并理解Struts框架的工作原理。随着你对Struts的深入学习和实践,你将能够构建更复杂的应用系统。

推荐阅读:
  1. 好程序员Java教程分享Java开发主流框架
  2. java开源框架介绍

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

java

上一篇:Java Spring框架应用

下一篇:Java MyBatis框架实践

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》