`

第一个struts2 程序

阅读更多
环境: tomact7/jdk1.6/eclipse Indigo

今天开始看<<Struts 2 Design and Programming: A Tutorial>> by Budi Kurniawan,

由于公司不能下载,只能使用struts-2.2.1了。当我把所有的jar包copy到lib目录下启动tomact时(使用tomact6),竞然报错,找了一下,是少了这个包: javassist-3.11.0.GA.jar,找了个,再启动,还是报错,原来是没有写spring listener,删除了struts2包里所有的spring相关的包和所有的plugin相关包,启动ok.
以下为本书46页的第一个struts2小程序,运行ok!


核心中有如下几个文件,

Product.java:

package business.action;
import java.io.Serializable;;

public class Product implements Serializable{
	private String productName;
	private String description;
	private String price;
	
	public String getProductName() {
		return productName;
	}
	public void setProductName(String productName) {
		this.productName = productName;
	}
	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		this.description = description;
	}
	public String getPrice() {
		return price;
	}
	public void setPrice(String price) {
		this.price = price;
	}
	
	public String execute(){
		return "success";
	}
}


product.jsp:

<html>
<head>
<title>Add Product Form</title>
</head>
<body>
	<div id="global" align="center">
		<h3>add a product</h3>
		<form method="post" action="Product_save.action">
			<table>
			<tr>
				<td>Product Name:</td>
				<td><input type="text" name="productName"/></td>
			</tr>
			<tr>
				<td>Description:</td>
				<td><input type="text" name="description"/></td>
			</tr>
			<tr>
				<td>Price:</td>
				<td><input type="text" name="price"/></td>
			</tr>							
			<tr>
				<td><input type="reset"/></td>
				<td><input type="submit" value="Add Product"/></td>
			</tr>							
			</table>
		</form>
	</div>
</body>
</html>



details.jsp:

<html>
<head>
<title>Save Product</title>
</head>
<body>
	<div id="global" align="center">
		<h4>The product has been saved.</h4>
		<p>
		       <h5>Details:</h5>
			product Names :${productName}<br/>
			Description :${description}<br/>
			Price :${price}<br/> 
			
		</p>
	</div>
</body>
</html>


struts.xml:
<?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>
	<constant name="struts.enable.DynamicMethodInvocation" value="true" />
	<constant name="struts.devMode" value="false" />
	<constant name="struts.i18n.encoding" value="utf-8" />
	<constant name="struts.custom.i18n.resources" value="globalMessages" />

<include file="conf/action/product.xml" />
</struts>


product.xml:
<?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="app02a" namespace="/" extends="struts-default">
		<action name="Product_input">
			<result>/jsp/product.jsp</result>
		</action>
		<action name="Product_save" class="business.action.Product">
			<result>/jsp/details.jsp</result>
		</action>
	</package>
</struts>


web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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_5.xsd"  
version="2.5">  

	<filter>
		<filter-name>struts2</filter-name>
		<filter-class>
			org.apache.struts2.dispatcher.FilterDispatcher
		</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>struts2</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	
	<!-- 
	为防止直接进入jsp,以下security-constraint和login必须添加
	 -->
	
	<security-constraint>
		<web-resource-collection>
			<web-resource-name>JSPs</web-resource-name>
			<url-pattern>/jsp/*</url-pattern>
		</web-resource-collection>
		<auth-constraint/>
	</security-constraint>
	
	<login-config>
		<auth-method>BASIC</auth-method>
	</login-config>
	

    
</web-app>


无关jar包太多,文件有点大,不过,总算跑起来了。
分享到:
评论

相关推荐

    第一个struts2程序

    这个"第一个struts2程序"是初学者入门Struts2框架的一个基础练习,它将帮助你理解如何配置和运行一个基本的Struts2应用。 首先,了解Struts2的核心概念至关重要。Struts2框架通过提供控制器Servlet...

    第一个Struts2程序中遇到的若干问题及解决方法

    在初学者尝试创建第一个Struts2程序时,可能会遇到一些常见问题。这篇博客将探讨这些问题并提供解决方案。 首先,配置问题是新手经常遇到的挑战。在搭建Struts2环境时,确保正确地在`web.xml`文件中配置了Struts2的...

    MyEclipse下搭建第一个Struts2程序

    本教程将指导您如何在MyEclipse集成开发环境中搭建第一个Struts2程序。 首先,我们需要了解MyEclipse。MyEclipse是基于Eclipse的Java EE集成开发环境,它包含了大量用于开发Java Web应用的工具和插件,如Tomcat...

    建立你的第一个Struts2应用程序

    ### 建立第一个Struts2应用程序:深入解析与实践 #### Struts2入门与环境搭建 在构建第一个Struts2应用程序的过程中,我们不仅需要掌握基本的开发流程,还应了解其与Java、Hibernate和Spring等框架的整合方法。...

    第一个struts程序

    这个问题搞了一个晚上。(希望对初学的朋友有帮助) 发现不能运行的原因 1、login.jsp的form表格里的action是在struts.xml中的name的属性的名字后面加上.action 例如: 2、web.xml中 org.apache.struts2.dispatcher...

    配置第一个Struts2的简单登陆程序

    本教程将指导新手配置第一个基于Struts2的简单登录程序。 首先,你需要从Apache Struts的官方网站下载Struts2的软件包。在编写此教程时,最新版本为Struts 2.0.11.2,但请注意,随着时间推移,可能会有新的版本发布...

    黑马Struts2视频(day1)

    - 如何创建第一个Struts2程序,包括配置web.xml和struts.xml文件。 - Action类的编写,包括Action方法的定义以及返回值类型。 - 使用Struts2的注解进行简化配置,例如`@Action`和`@Result`。 - 拦截器的使用,比如`...

    struts2介绍

    开发第一个Struts2程序,需要配置web.xml,添加Struts2的过滤器,编写Action类,创建配置文件struts.xml,以及编写JSP页面。Action类中的方法返回字符串,指示视图的跳转路径。配置文件用于定义Action的映射和相关...

    struts2入门 struts2简介-第一个程序

    Struts2是一个基于MVC(Model-View-Controller)设计模式的Java Web应用程序框架,它在Web开发领域中被广泛使用,特别是在企业级应用中。Struts2是Apache软件基金会的开源项目,它继承了Struts1的优点并解决了其存在...

    Struts2 PPT

    非常好的Struts2 PPT,包括第一个struts2程序,

    struts2学习教程

    struts2学习教程包括:第一个Struts2程序,处理一个form多个submit,struts.xml常用配置解析,使用validate方法验证数据,使用Validation框架验证数据,在Action类中获得HttpServletResponse对象的四种方法,上传...

    IntelliJ IDEA 2017.3创建第一个Struts2项目

    在本文中,我们将深入探讨如何使用IntelliJ IDEA 2017.3版本来创建一个基于Struts2框架的第一个Web应用程序。Struts2是一个强大的、开源的MVC(Model-View-Controller)框架,它简化了Java Web开发,提高了代码的可...

    struts2jar包

    Struts2是一个强大的Java ...总的来说,Struts2是一个功能强大且成熟的MVC框架,其jar包的引入是搭建Struts2应用的第一步。正确理解和使用这些jar包以及框架的核心概念,能够帮助我们更高效地开发和维护Java Web项目。

    struts2 教程 亲手制作

    ### Struts2 教程:亲手制作 ...通过以上步骤,我们完成了第一个Struts2程序的创建。与Struts1.x相比,Struts2简化了许多繁琐的配置,并引入了更为现代的设计理念和技术,使得开发者能够更加专注于业务逻辑的实现。

    struts2 helloworld程序

    在这个"Struts2 HelloWorld"程序中,我们将深入理解Struts2的基本结构和配置,以及如何创建第一个简单的应用。 首先,让我们从环境搭建开始。为了运行Struts2的HelloWorld程序,你需要安装Java Development Kit ...

    第一个struts2

    这个“第一个struts2”项目是初学者理解Struts2工作原理的一个基础示例,它展示了如何使用Struts2的核心标签库,特别是`s`标签,以及如何通过`com.opensymphony.xwork2.util.ValueStack`来处理和访问标签中的值。 ...

Global site tag (gtag.js) - Google Analytics