- 浏览: 203139 次
- 性别:
- 来自: 湖南
文章分类
最新评论
CRUD是Create(创建)、Read(读取)、Update(更新)和Delete(删除)的缩写,它是普通应用程序的缩影。如果您掌握了某框架的CRUD编写,那么意味可以使用该框架创建普通应用程序了,所以大家使用新框架开发OLTP(Online Transaction Processing)应用程序时,首先会研究一下如何编写CRUD。这类似于大家在学习新编程语言时喜欢编写“Hello World”。
本文旨在讲述Struts 2上的CRUD开发,所以为了例子的简单易懂,我不会花时间在数据库的操作上。取而代之的是一个模拟数据库的哈希表(Hash Map)。
具体实现
首先,让我们看看的“冒牌”的DAO(Data Access Object,数据访问对象),代码如下:
清单1 src/tutorial/dao/BookDao.java
以上代码相信不用解释大家也清楚,我使用ConcurrentMap数据结构存储Book对象,这主要是为了方便检索和保存Book对象;另外,我还将data变量设为静态唯一来模拟应用程序的数据库。
接下来是的数据模型Book类,代码如下:
清单2 src/tutorial/model/Book.java
Book类有三个属性isbn,、title和price分别代表书籍的编号、名称和价格,其中编号用于唯一标识书籍(相当数据库中的主键)。
然后,我们再来看看Action类的代码:
清单3 src/tutorial/action/BookAction.java
BookAction类中属性isbn用于表示待编辑或删除的书籍的编号,属性isbns用于表示多个待删除的书籍的编号数组,属性book表示当前书籍,属性books则表示当前的书籍列表。BookAction有四个Action方法分别是load、list、store和remove,也即是CRUD都集中在BookAction中实现。
再下来是Action的配置代码:
清单4 src/struts.xml
以上的配置中,我使用了四个Action定义。它们都在“/Book”名值空间内。这样我就可以分别通过“http://localhost:8080/Struts2_CRUD/Book/List.action”、“http://localhost:8080/Struts2_CRUD/Book/Edit.action”、“http://localhost:8080/Struts2_CRUD/Book/Store.action”和“http://localhost:8080/Struts2_CRUD/Book/Remove.action”来调用BookAction的四个Action方法进行CRUD操作。当然,这只是个人喜好,你大可以只定义一个Action(假设其名称为“Book”),之后通过“http://localhost:8080/Struts2_CRUD/Book!list.action”的方式来访问,详细做法请参考《Struts 2.0的Action讲解》。另外,我由于希望在完成编辑或删除之后回到列表页,所以使用类型为redirect(重定向)的result。
下面是列表页面的代码:
清单5 WebContent\Book\List.jsp
以上代码,值得注意的是在<s:form>标签,我设置了theme属性为“simple”,这样可以取消其默认的表格布局。之前,有些朋友问我“如果不希望提交按钮放在右边应该怎样做?”,上述做汗是答案之一。当然,更佳的做法自定义一个theme,并将其设为默认应用到整个站点,如此一来就可以得到统一的站点风格。我会在以后的文章中会对此作详细的描述。
编辑或添加书籍的页面代码如下:
清单6 WebContent/Book/Edit.jsp
如果book为null,则表明该页面用于添加书籍,反之则为编辑页面。
为了方便大家运行示例,我把web.xml的代码也贴出来,如下:
清单7 WebContent/WEB-INF/web.xml
大功告成,下面发布运行应用程序,在浏览器中键入:http://localhost:8080/Struts2_CRUD/Book/List.action,出现列表页面
点击“Add Book”,出现添加书籍页面
后退回到列表页面,点击“Edit”,出现编辑书籍页面
总结
本文只是粗略地了介绍Struts 2的CRUD实现方法,所以有很多功能没有实现,如国际化和数据校验等。大家可以在上面例子的基础将其完善,当作练习也不错。
本文旨在讲述Struts 2上的CRUD开发,所以为了例子的简单易懂,我不会花时间在数据库的操作上。取而代之的是一个模拟数据库的哈希表(Hash Map)。
具体实现
首先,让我们看看的“冒牌”的DAO(Data Access Object,数据访问对象),代码如下:
package tutorial.dao; import java.util.Collection; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import tutorial.model.Book; public class BookDao { private static final BookDao instance; private static final ConcurrentMap<String, Book> data; static { instance = new BookDao(); data = new ConcurrentHashMap<String, Book>(); data.put("978-0735619678", new Book("978-0735619678", "Code Complete, Second Edition", 32.99)); data.put("978-0596007867", new Book("978-0596007867", "The Art of Project Management", 35.96)); data.put("978-0201633610", new Book("978-0201633610", "Design Patterns: Elements of Reusable Object-Oriented Software", 43.19)); data.put("978-0596527341", new Book("978-0596527341", "Information Architecture for the World Wide Web: Designing Large-Scale Web Sites", 25.19)); data.put("978-0735605350", new Book("978-0735605350", "Software Estimation: Demystifying the Black Art", 25.19)); } private BookDao() {} public static BookDao getInstance() { return instance; } public Collection<Book> getBooks() { return data.values(); } public Book getBook(String isbn) { return data.get(isbn); } public void storeBook(Book book) { data.put(book.getIsbn(), book); } public void removeBook(String isbn) { data.remove(isbn); } public void removeBooks(String[] isbns) { for(String isbn : isbns) { data.remove(isbn); } } }
清单1 src/tutorial/dao/BookDao.java
以上代码相信不用解释大家也清楚,我使用ConcurrentMap数据结构存储Book对象,这主要是为了方便检索和保存Book对象;另外,我还将data变量设为静态唯一来模拟应用程序的数据库。
接下来是的数据模型Book类,代码如下:
package tutorial.model; public class Book { private String isbn; private String title; private double price; public Book() { } public Book(String isbn, String title, double price) { this.isbn = isbn; this.title = title; this.price = price; } public String getIsbn() { return isbn; } public void setIsbn(String isbn) { this.isbn = isbn; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }
清单2 src/tutorial/model/Book.java
Book类有三个属性isbn,、title和price分别代表书籍的编号、名称和价格,其中编号用于唯一标识书籍(相当数据库中的主键)。
然后,我们再来看看Action类的代码:
package tutorial.action; import java.util.Collection; import tutorial.dao.BookDao; import tutorial.model.Book; import com.opensymphony.xwork2.ActionSupport; public class BookAction extends ActionSupport { private static final long serialVersionUID = 872316812305356L; private String isbn; private String[] isbns; private Book book; private Collection<Book> books; private BookDao dao = BookDao.getInstance(); public Book getBook() { return book; } public void setBook(Book book) { this.book = book; } public String getIsbn() { return isbn; } public void setIsbn(String isbn) { this.isbn = isbn; } public String[] getIsbns() { return isbns; } public void setIsbns(String[] isbns) { this.isbns = isbns; } public Collection<Book> getBooks() { return books; } public void setBooks(Collection<Book> books) { this.books = books; } public String load() { book = dao.getBook(isbn); return SUCCESS; } public String list() { books = dao.getBooks(); return SUCCESS; } public String store() { dao.storeBook(book); return SUCCESS; } public String remove() { if(null != isbn) { dao.removeBook(isbn); } else { dao.removeBooks(isbns); } return SUCCESS; } }
清单3 src/tutorial/action/BookAction.java
BookAction类中属性isbn用于表示待编辑或删除的书籍的编号,属性isbns用于表示多个待删除的书籍的编号数组,属性book表示当前书籍,属性books则表示当前的书籍列表。BookAction有四个Action方法分别是load、list、store和remove,也即是CRUD都集中在BookAction中实现。
再下来是Action的配置代码:
<?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="Struts2_CRUD_DEMO" extends="struts-default" namespace="/Book"> <action name="List" class="tutorial.action.BookAction" method="list"> <result>List.jsp</result> </action> <action name="Edit" class="tutorial.action.BookAction" method="load"> <result>Edit.jsp</result> </action> <action name="Store" class="tutorial.action.BookAction" method="store"> <result type="redirect">List.action</result> </action> <action name="Remove" class="tutorial.action.BookAction" method="remove"> <result type="redirect">List.action</result> </action> </package> </struts>
清单4 src/struts.xml
以上的配置中,我使用了四个Action定义。它们都在“/Book”名值空间内。这样我就可以分别通过“http://localhost:8080/Struts2_CRUD/Book/List.action”、“http://localhost:8080/Struts2_CRUD/Book/Edit.action”、“http://localhost:8080/Struts2_CRUD/Book/Store.action”和“http://localhost:8080/Struts2_CRUD/Book/Remove.action”来调用BookAction的四个Action方法进行CRUD操作。当然,这只是个人喜好,你大可以只定义一个Action(假设其名称为“Book”),之后通过“http://localhost:8080/Struts2_CRUD/Book!list.action”的方式来访问,详细做法请参考《Struts 2.0的Action讲解》。另外,我由于希望在完成编辑或删除之后回到列表页,所以使用类型为redirect(重定向)的result。
下面是列表页面的代码:
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %> <%@ taglib prefix="s" uri="/struts-tags" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Book List</title> <style type="text/css"> table { border: 1px solid black; border-collapse: collapse; } table thead tr th { border: 1px solid black; padding: 3px; background-color: #cccccc; } table tbody tr td { border: 1px solid black; padding: 3px; } </style> </head> <body> <h2>Book List</h2> <s:form action="Remove" theme="simple"> <table cellspacing="0"> <thead> <tr> <th>Select</th> <th>ISBN</th> <th>Title</th> <th>Price</th> <th>Operation</th> </tr> </thead> <tbody> <s:iterator value="books"> <tr> <td><input type="checkbox" name="isbns" value='<s:property value="isbn" />' /></td> <td><s:property value="isbn" /></td> <td><s:property value="title" /></td> <td>$<s:property value="price" /></td> <td> <a href='<s:url action="Edit"><s:param name="isbn" value="isbn" /></s:url>'> Edit </a> <a href='<s:url action="Remove"><s:param name="isbn" value="isbn" /></s:url>'> Delete </a> </td> </tr> </s:iterator> </tbody> </table> <s:submit value="Remove" /><a href="Edit.jsp">Add Book</a> </s:form> </body> </html>
清单5 WebContent\Book\List.jsp
以上代码,值得注意的是在<s:form>标签,我设置了theme属性为“simple”,这样可以取消其默认的表格布局。之前,有些朋友问我“如果不希望提交按钮放在右边应该怎样做?”,上述做汗是答案之一。当然,更佳的做法自定义一个theme,并将其设为默认应用到整个站点,如此一来就可以得到统一的站点风格。我会在以后的文章中会对此作详细的描述。
编辑或添加书籍的页面代码如下:
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %> <%@ taglib prefix="s" uri="/struts-tags" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Book</title> </head> <body> <h2> <s:if test="null == book"> Add Book </s:if> <s:else> Edit Book </s:else> </h2> <s:form action="Store" > <s:textfield name="book.isbn" label="ISBN" /> <s:textfield name="book.title" label="Title" /> <s:textfield name="book.price" label="Price" /> <s:submit /> </s:form> </body> </html>
清单6 WebContent/Book/Edit.jsp
如果book为null,则表明该页面用于添加书籍,反之则为编辑页面。
为了方便大家运行示例,我把web.xml的代码也贴出来,如下:
<?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 Fileupload</display-name> <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> <welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list> </web-app>
清单7 WebContent/WEB-INF/web.xml
大功告成,下面发布运行应用程序,在浏览器中键入:http://localhost:8080/Struts2_CRUD/Book/List.action,出现列表页面
点击“Add Book”,出现添加书籍页面
后退回到列表页面,点击“Edit”,出现编辑书籍页面
总结
本文只是粗略地了介绍Struts 2的CRUD实现方法,所以有很多功能没有实现,如国际化和数据校验等。大家可以在上面例子的基础将其完善,当作练习也不错。
发表评论
-
领导首页页面
2012-11-30 19:57 0<%@ page language="ja ... -
Hibernate Annotation应用
2012-05-04 10:46 1503@Entity @Table @Id @Column @Tra ... -
服务器证书安装配置指南(Weblogic)
2012-04-24 12:20 1116一、 生成证书请求 1. 安装JDK(可选) We ... -
jsp 导出excel
2011-09-21 21:41 1486excel文件是可以在jsp响应,通过输出相应xml,即可得到 ... -
eclipse相关插件安装
2011-06-15 20:02 10581.tomcatPluginV321.zip tomcat部 ... -
流程控制应用JPBM
2011-06-04 14:48 1607工作流(流程控制应用) 什么是工作流? 工作流是业务流程自动化 ... -
网上支付
2011-03-28 12:57 3157两种接入方案 相接与银 ... -
Hibernate Annotation
2011-03-01 08:54 1131简介: 在过去几年里,Hibernate不断发展,几乎成为Ja ... -
在Struts 2中实现文件上传
2011-02-11 16:09 853Struts 2是通过Commons FileUpload文件 ... -
Java加密技术
2010-12-31 11:51 757本篇内容简要介绍几种方法源码文件 如基本的单向加密 ... -
电子邮件开发应用
2010-12-20 12:48 9671.电子邮件发送 /* * html 电子邮件发送 ... -
Struts 2与AJAX
2010-12-18 08:29 653在当今——Web 2.0概念铺天盖地的Internet环境下, ... -
Strus 2的新表单标志的使用
2010-12-17 09:10 787Struts 2为大家提供了不少常用的很酷的表单标志,简化了我 ... -
Struts 2中的OGNL
2010-12-16 08:28 638本人是一个EL(Expression ... -
在Struts 2中实现文件上传
2010-12-14 08:34 841实现原理 Struts 2是通过Commons FileUpl ... -
在Struts 2中实现IoC
2010-12-13 07:58 843IoC(Inversion of Control,以下译为控制 ... -
Struts 2的基石——拦截器(Interceptor)
2010-12-11 08:23 811首先,要跟大家道个歉 ... -
在Struts 2.0中实现表单数据校验(Validation)
2010-12-10 09:45 784在写前几篇文章的时候,有些朋友建议我的写一篇关于表单数据校验的 ... -
转换器(Converter)——Struts 2.0中的魔术师
2010-12-09 08:20 674在我已往的Struts 1.x项目经验中,有个问题不时的出现— ... -
在Struts 2.0中国际化(i18n)您的应用程序
2010-12-08 08:14 738国际化是商业系统中不可或缺的一部分,所以无论您学习的是什么We ...
相关推荐
01 为Struts 2.0做好准备 02 常用的Struts 2.0的标志(Tag) 03 Struts 2.0的Action讲解 04 在Struts 2.0中国际化...10 在Struts 2中实现CRUD 11 Struts 2中的OGNL 12 trus 2的新表单标志的使用 13 Struts 2与AJAX
在Struts2中,创建新记录通常涉及以下步骤: 1. 创建一个Action类,这个类通常会有一个与添加操作相关的execute方法。 2. 设计一个JSP表单用于用户输入数据。 3. 使用Struts2的`.struts.xml`配置文件定义Action的...
01 为Struts 2.0做好准备 02 常用的Struts 2.0的标志(Tag) 03 Struts 2.0的Action讲解 04 在Struts 2.0中国际化...10 在Struts 2中实现CRUD 11 Struts 2中的OGNL 12 Struts 2的新表单标志的使用 13 Struts 2与AJAX
1. **Action类**:在Struts2中,业务逻辑通常封装在Action类中。一个Action类对应一个用户请求,处理相应的业务操作,并返回一个结果。 2. **配置文件**:主要包括struts.xml,它是Struts2的核心配置文件,用于定义...
Struts 2.0系列(MAX),pdf格式,全方位介绍struts2: 常用的Struts 2.0的标志(Tag)介绍 Struts 2.0的Action讲解 ...在Struts 2中实现CRUD Struts 2中的OGNL Strus 2的新表单标志的使用 Struts 2与AJAX
在 Struts2 中实现 CRUD 操作通常涉及控制器(Action)、模型(Model)和视图(View)的交互。 在这个代码片段中,我们看到一个 Struts2 Action 类,它包含了对数据库进行 CRUD 操作的方法。首先,类中声明了数据库...
10 在Struts 2中实现CRUD 11 Struts 2中的OGNL 12 trus 2的新表单标志的使用 13 Struts 2与AJAX Struts2中用Spring实现IoC.doc Struts2中的零配置与CoC(Convention over Configration).doc Struts2介绍之使用链接...
在Struts2中实现CRUD操作,我们需要以下组件: 1. **配置文件**:主要包括`struts.xml`,这是Struts2的核心配置文件,用于定义Action、结果类型、拦截器等。例如,为每个CRUD操作创建一个Action,配置对应的URL和...
Struts2实现CRUD(增 删 改 查) Maven版; eclipse直接导入使用; 教程地址:http://blog.csdn.net/sky_zhangfan/article/details/1896842
在本教程中,我们将探讨如何利用Struts实现CRUD(创建、读取、更新和删除)操作,这是一些基本但至关重要的数据库交互功能。 首先,理解Struts框架的核心组件至关重要。ActionServlet是Struts的入口点,它处理HTTP...
在Struts2中,可以通过Spring整合这些框架,实现依赖注入,使得DAO(Data Access Object)层能方便地操作数据库。 在Struts2中,异常处理也非常重要。通过`<global-exception-mappings>`标签可以全局处理异常,而`...
在Struts2中,Action类作为Controller,处理用户的请求;Model通常是业务对象,负责数据的处理和存储;View则用于展示数据,通常由JSP页面或者FreeMarker模板实现。 3. **CRUD操作** CRUD操作是数据库管理中最基础...
Struts2实现CRUD 实用的例子借助Struts2框架开发Web应用会减少大量的代码量
"在Struts 2中实现CRUD" 涉及到数据库的基本操作,如创建(Create)、读取(Retrieve)、更新(Update)和删除(Delete),以及如何通过Struts2实现这些功能。 10. **新表单标志**: "Strus 2的新表单标志的使用" 可能...
在本示例中,"strutsCRUD1.rar" 是一个包含Struts1实现CRUD操作的项目压缩包。CRUD代表创建(Create)、读取(Retrieve)、更新(Update)和删除(Delete),这是数据库操作的基本功能。 首先,让我们讨论一下Struts1的核心...
Struts2是一个强大的Java EE应用程序框架...通过学习这个示例,初学者可以理解如何在Struts2中组织Action、Form、Interceptor、配置文件和视图,以及如何实现CRUD操作和模糊查找功能,为后续的Web开发打下坚实的基础。
struts的crud sample demo(struts-crud.war) 可以直接解压查看代码,或者放到工程中运行