`

Struts 2 + Spring 2 + JPA + AJAX (一)

阅读更多
    *  Prerequisites
          o Tomcat
          o MySql
    * Get the code
          o Show me the code
          o The maven way
    * Doing it yourself
          o Create Eclipse project
          o Dependencies
          o Domain
          o Person service.
          o JPA configuration
          o Spring
          o Struts
          o The pages
          o Validation
    * Using Toplink Essentials instead of Hibernate
    * References

Prerequisites

    * Tomcat
    * Eclipse
    * MySQL Server (MySQL licensing policy)

Tomcat

Install Tomcat before going forward. See Tomcat's installation guide if you have any problem installing it.
MySql

Install and configure MySql. Create a database named "quickstart" and run the script below to create the "Person" table. Later, on applicationContext.xml, we'll use 'root' as the user name and password for the database, remember to replace those values with the right ones for your database.

CREATE TABLE 'quickstart'.'Person' (
  'id' INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
  'firstName' VARCHAR(45) NOT NULL,
  'lastName' VARCHAR(45) NOT NULL,
  PRIMARY KEY('id')
)
ENGINE = InnoDB;

Get the code
Show me the code

You can just download the zipped Eclipse project, add the required dependencies to the lib folder under the /WebContent/WEB-INF/lib folder (relative to project's root folder) and import it into Eclipse.
The maven way

To run the project this way you will need maven installed.

   1. Download the zipped project
   2. Download jta jar from here.
          * Note that the Download Manager may save the file to your root drive, and it may give the file a .ZIP extension. You must rename the file to jta-1.1-classes.jar.
          * If a later version is available, update the version references in the next step.
   3. Install the jta jar file running:

      $ mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta -Dversion=1.1 -Dpackaging=jar -Dfile=c:\path\to\jar\jta-1.1-classes.jar

   4. Bear with me, we are almost there
   5. cd into quickstart and run:

      $ mvn jetty:run

   6. Point your browser to http://localhost:8080/quickstart
   7. To create an eclipse project run:

      $ mvn eclipse:eclipse

      or (to create web project for WTP):

      mvn eclipse:eclipse -Dwtpversion=1.0

Doing it yourself
Create Eclipse project

   1. Open Eclipse. Seriously, you need to open Eclipse.
   2. Click File -> New -> Project. Under the "Web" folder, select "Dynamic Web Project" and click "Next".
   3. Enter the project name, "quickstart" from here on. The project will be running inside Tomcat, so we need to create a server configuration for it.
         1. Under "Target Runtime", click "New", select "Apache Tomcat 5.5" and click next.
         2. Enter Tomcat's installation directory and select an installed JRE (1.5 is required)
   4. Now you should be back to the project creation wizard, with Tomcat as your Target Runtime. Click "Next". Select "Dynamic Web Module" and "Java" facets, and click "Finish".

Dependencies

Your project should contain the folders "src", "build" and "WebContent". We are going to put all the required jars under "/WebContent/WEB-INF/lib". To add files to the "lib" folder, just copy them to ${workspace}\quickstart\WebContent\WEB-INF\lib, where ${workspace} is the location of your Eclipse workspace folder.

In the table, the version has been removed from the JAR files, since these may change in future milestone releases. Use whatever version is shipping with the indicated products.
JAR From License
xwork.jar Struts 2 Apache License
struts2-core.jar Struts 2
struts2-spring-plugin.jar Struts 2
ognl.jar Struts 2
freemarker.jar Struts 2
commons-logging-api.jar Struts 2
mysql-connector-java.jar MySql JDBC Driver MySQL licensing policy
spring.jar Spring 2.0 Apache License
antlr.jar Hibernate Core LGPL
asm.jar Hibernate Core
asm-attrs.jar Hibernate Core
cglib.jar Hibernate Core
dom4j.jar Hibernate Core
jdbc2_0-stdext.jar Hibernate Core
ehcache.jar Hibernate Core
hibernate3.jar Hibernate Core
xml-apis.jar Hibernate Core
commons-collections.jar Hibernate Core
ejb3-persistence.jar Hibernate Annotations LGPL
jta.jar Hibernate Annotations
hibernate-commons-annotations.jar Hibernate Annotations
hibernate-annotations.jar Hibernate Annotations
hibernate-entitymanager.jar Hibernate Entity Manager LGPL
javassist.jar Hibernate Entity Manager
jboss-archive-browsing.jar Hibernate Entity Manager

Right click on the project and select "Refresh" (to notify Eclipse of the jars that we just added).
分享到:
评论

相关推荐

    struts2+spring2+jpa+ajax

    Struts2、Spring2、JPA(Java Persistence API)和Ajax是Java Web开发中的四大关键技术,它们共同构建了一个高效、灵活且功能强大的应用程序框架。在这个项目中,这四者的组合运用旨在实现一个前后端分离、数据持久...

    help\Struts 2 + Spring 2 + JPA + AJAX.

    Struts 2 + Spring 2 + JPA + AJAX 这个组合是早期非常流行的一个Java Web开发框架集合,它融合了MVC、依赖注入、面向切面编程以及异步请求处理等关键技术点,为开发者提供了一套完整的解决方案。 - **Struts 2**:...

    Struts 2 + Spring 2 + JPA + AJAX

    Struts 2、Spring 2、JPA 和 AJAX 是四个在企业级 Java 开发中非常重要的技术组件。这个项目组合提供了全面的解决方案,用于构建高效、可扩展且易于维护的 Web 应用程序。 **Struts 2** 是一个基于 MVC(Model-View...

    Struts 2 + Spring 2 + JPA + AJAX 示例

    Struts 2、Spring 2、JPA 和 AJAX 是企业级 Web 应用开发中的四大核心技术,它们在构建高效、可扩展的系统中扮演着重要角色。本示例结合这四种技术,提供了一个完整的应用实例,帮助开发者了解如何将它们整合在一起...

    ssh2(struts2+spring2.5+hibernate3.3+ajax)带进度条文件上传(封装成标签)

    标题 "ssh2(struts2+spring2.5+hibernate3.3+ajax)带进度条文件上传(封装成标签)" 涉及到的是一个基于Java Web的项目,利用了Struts2、Spring2.5、Hibernate3.3和Ajax技术,实现了文件上传并带有进度条显示的功能...

    整合 Struts 2 + Spring 2 + JPA + AJAX

    通过这个quickstart文件,开发者可以获得一个基本的整合模板,快速搭建起一个具备Struts 2 控制、Spring 管理、JPA 数据持久化和AJAX 动态交互的Web应用。在实际项目中,可以根据需求进一步定制和扩展。

    struts2+spring+hibernate 整合的jar包

    Struts2、Spring和Hibernate是Java Web开发中的三大框架,它们的整合(SSH)极大地提升了开发效率和项目的可维护性。下面将详细讲解这三大框架的核心功能以及整合过程中的关键知识点。 1. **Struts2**:Struts2是一...

    Struts2+Spring2.5+Hibernate3(JPA)+ExtJS3基本后台

    这些文件表明这个项目可能包含了一个使用Struts2、Spring2.5、Hibernate3(JPA)后端技术和ExtJS3前端技术的Web应用实例,集成了富文本编辑、数据展示和用户交互功能。开发者可以通过研究这些文件来学习和理解这些...

    网上购物struts2+spring+jpa+ajax

    该项目是一个基于Struts2、Spring、JPA和Ajax技术实现的网上购物系统。这个系统的主要目的是为了演示如何在实际开发中整合这些技术,提供一个功能完善的电商应用框架。以下是对这些关键技术点的详细解释: **Struts...

    经典的Struts2+Spring 2+JPA+AJAX学习项目

    Struts2+Spring 2+JPA+AJAX学习项目是一个经典的Java Web开发组合,用于构建高效、可扩展的应用程序。这个项目的核心组件包括: 1. **Struts2**: Struts2是一个基于MVC(Model-View-Controller)设计模式的Java Web...

    Eclipse开发 Struts 2 + Spring 2 + JPA + AJAX

    在本文中,我们将深入探讨如何使用Eclipse进行Java企业级应用开发,具体涉及Struts 2、Spring 2、JPA以及AJAX技术的集成。这些框架和技术的结合提供了强大的功能,包括MVC架构、依赖注入、持久化管理和异步通信。 ...

    Struts 2 + Spring 2 + JPA + AJAX示例

    Struts 2、Spring 2 和 JPA 是Java Web开发中的三个重要框架,它们共同构建了一个强大、灵活的后端架构。在这个示例中,它们与AJAX技术结合,提供了更丰富的用户交互体验。让我们详细了解一下这些技术以及它们如何...

    Struts2+AJAX+JPA+Spring合集(英文版)

    ### Struts2、AJAX、JPA与Spring的综合运用 在IT领域,尤其是在Web开发中,集成多种框架和技术以创建高效、可扩展且功能丰富的应用程序是常见的实践。本篇文章将深入探讨Struts2、AJAX、JPA与Spring这四种技术的...

    Struts2 + Spring2.5 + JPA(hibernate) + AJAX+ 实例

    Struts2、Spring2.5、JPA(Hibernate)以及AJAX是构建高效、模块化且可维护的企业级Web应用程序的常用技术栈。这个实例项目整合了这些技术,旨在提供一个全面的开发环境,帮助开发者理解和掌握它们的协同工作方式。 ...

    struts2+spring3+hibernate4整合所用jar包

    Struts2、Spring3和Hibernate4是Java Web开发中的三大框架,它们的整合是构建高效、灵活的企业级应用的常用方式。这篇详细的知识点解析将深入探讨这三个框架的各自功能,以及如何将它们有效地整合在一起。 **Struts...

    Struts 2+Spring开发应用_免费

    Struts 2 和 Spring 是两种在 Java Web 开发中广泛使用的开源框架,它们结合使用可以构建高效、可扩展的企业级应用程序。Struts 2 主要负责 MVC(模型-视图-控制器)架构的设计,而 Spring 提供了依赖注入、事务管理...

Global site tag (gtag.js) - Google Analytics