Java Struts框架是一个用于创建Web应用程序的开源框架,它基于MVC(Model-View-Controller)设计模式。Struts框架的主要组件包括Action类、FormBean、ActionForm、ActionMapping、视图(JSP页面)和验证框架等。以下是使用Struts框架进行开发的基本步骤:
首先,确保你的开发环境中已经安装了Java JDK和Tomcat服务器。然后,配置你的项目结构,通常包括WEB-INF
目录下的lib
文件夹和其他必要的资源文件。
你可以使用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>
在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>
在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;
}
}
在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>
在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>
将项目部署到Tomcat服务器上,并访问http://localhost:8080/your-app-context/hello
,你应该能看到显示“Hello, Struts!”的页面。
以上步骤涵盖了使用Java Struts框架进行开发的基本流程。通过这些步骤,你可以创建一个简单的Web应用程序,并理解Struts框架的工作原理。随着你对Struts的深入学习和实践,你将能够构建更复杂的应用系统。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。