- 浏览: 1052820 次
- 性别:
- 来自: 广州
文章分类
- 全部博客 (279)
- Apache net (10)
- JBoss Rules (3)
- Seam ACL (1)
- Seam (14)
- Seam JPA高级权限验证 (8)
- 待解决的问题.... (1)
- JAVA (43)
- Dwr (4)
- Ajax4JSF (1)
- JavaScript (27)
- 生活小常识 (17)
- Richfaces (3)
- seam自己经历 (14)
- JDBC (1)
- mysql (6)
- WebService (10)
- Java Web (4)
- Hibernate (13)
- J2EE框架整合 (3)
- Spring (9)
- BEA Weblogic (1)
- XML (1)
- log4j (6)
- CSS (2)
- javaIO文件的读写 (5)
- SVN服务器的安装 (5)
- powerDesigner (2)
- SQL常用语句 (3)
- wicket初学 (5)
- eclipse (7)
- 正则表达式 (1)
- ExtJS (6)
- maven(m2eclipse) (1)
- struts2.0 (9)
- JPA (6)
- struts2.0整合spring2.5 (9)
- linux (6)
- Oracle (5)
- Servlet (3)
- MyEclipseGen (0)
最新评论
-
qq_31247573:
JAVA 获取http返回XML的数据 -
jasmine_20100810:
...
linux下tomcat服务的启动、关闭与错误跟踪 -
weiaiFang0624:
视频下载地址:http://download.csdn.net ...
there is no action mapped for namespace / and action name解决办法 -
p476462534:
JS控制表单form的提交 -
dandongsoft:
aaaaaaaaaaaaaaa
httpClient,JAVA访问http request response
整合的步骤如下:(这里强调一点,网上有说用spring去管理struts的Action,这种方式也可以。我已经试过那种方式了,但是我在这里介绍另外一种:在spring的配置文件里面可以不用去配置某个action的service,即在StudentAction.java中可以引用所有的service,根本就不需用配置哪个action来对应哪个service,这种方式比较灵活)
×××××××××在附件中有我做的这个项目的示意图。××××××××××
1.web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID" 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>struts2.0spring2.5</display-name> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <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> <filter> <filter-name>struts-cleanup</filter-name> <filter-class>org.apache.struts2.dispatcher.ActionContextCleanUp</filter-class> </filter> <filter-mapping> <filter-name>struts-cleanup</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!--Spring Context Config loader--> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/conf/applicationContext.xml,classpath:applicationContext-*.xml</param-value> </context-param> <!-- spirng解决乱码 --> <filter> <filter-name>encoding</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>encoding</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
2. applicationContext.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"> <!-- PROPERTIES DEFINITIONS --> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>/WEB-INF/conf/jdbc.properties</value> </list> </property> </bean> <!-- DATASOURCE DEFINITION --> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="${jdbc.driver}" /> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" /> <property name="url" value="${jdbc.url}" /> </bean> <!-- ENTITY MANAGER FACTORY --> <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> <property name="persistenceXmlLocation" value="classpath:META-INF/persistence.xml"/> <property name="persistenceUnitName" value="Test_Persistence"/> <property name="dataSource" ref="dataSource" /> <property name="loadTimeWeaver"> <bean class="com.ctit.tools.MyLoadTimeWeaver"/> </property> <property name="jpaVendorAdapter"> <bean class="org.springframework.orm.jpa.vendor.TopLinkJpaVendorAdapter"> <property name="showSql" value="false" /> <property name="generateDdl" value="false" /> </bean> </property> </bean> <!-- TRANSACTION MANAGER --> <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> <property name="entityManagerFactory" ref="entityManagerFactory" /> <property name="dataSource" ref="dataSource"/> </bean> <!-- ASPECT CONFIGURATION --> <aop:config> <aop:pointcut id="monsterBigManager" expression="execution(* com.ctit.service.*.*(..))" /> <aop:advisor pointcut-ref="monsterBigManager" advice-ref="monsterBigAdvice"/> </aop:config> <tx:advice id="monsterBigAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="insert*" propagation="REQUIRED"/> <tx:method name="add*" propagation="REQUIRED"/> <tx:method name="update*" propagation="REQUIRED"/> <tx:method name="delete*" propagation="REQUIRED"/> <tx:method name="register*" propagation="REQUIRED"/> <tx:method name="create*" propagation="REQUIRED"/> <tx:method name="*" /> </tx:attributes> </tx:advice> <bean id="studentDao" class="com.ctit.dao.impl.StudentDaoImpl"> <property name="entityManagerFactory" ref="entityManagerFactory"></property> </bean> <bean id="studentService" class="com.ctit.service.impl.StudentServiceImpl"> <property name="repository" ref="studentDao"></property> </bean> </beans>
3. struts.xml 一定要在src的目录下或者和src平齐的目录下,我的是在conf这个目录下,conf和src是平齐的目录。 <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <package name="action" extends="struts-default"> <action name="action_*" class="com.ctit.action.StudentAction" method="{1}"> <result name="list">/studentlist.jsp</result> <result name="delete">/studentlist.jsp</result> <result name="success">/success.jsp</result> <result name="failed">/fail.jsp</result> <result name="insert">/studentedit.jsp</result> </action> <!-- App Action--> <action name="App" class="com.ctit.action.AppAction"> <result name="appList">/app/apps.jsp</result> <result name="newApp">/app/app-edit.jsp</result> <result name="createApp">/app/apps.jsp</result> <result name="deleteApp">/app/apps.jsp</result> <result name="editApp">/app/app-edit.jsp</result> <result name="updateApp">/app/apps.jsp</result> </action> </package> </struts>
上面是它们整合时的总的最主要的配置文件信息,如果那些都按照我的方法配置基本上不会出现问题的。
下面是附属的配置文件信息:
4. persistence.xml 。位置在src目录下建立一个META-INF目录,它下面有persistence.xml和orm.xml配置信息. 这里的Test_Persistence是和applicationContext.xml里面的persistenceUnitName对应的哦。 <?xml version="1.0" encoding="UTF-8"?> <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"> <persistence-unit name="Test_Persistence" transaction-type="RESOURCE_LOCAL"> <provider>oracle.toplink.essentials.PersistenceProvider</provider> <mapping-file>META-INF/orm.xml</mapping-file> <class>com.ctit.pojo.Student</class> </persistence-unit> </persistence>
5. orm.xml <?xml version="1.0" encoding="UTF-8"?> <entity-mappings xmlns="http://java.sun.com/xml/ns/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_1_0.xsd" version="1.0"> </entity-mappings>
6. jdbc.properties jdbc.driver=com.mysql.jdbc.Driver jdbc.username=root jdbc.password=root jdbc.url=jdbc\:mysql\://192.168.1.108\:3306/test
另外还需要说明一点是在applicationContext.xml中还有个配置需要注意:
<property name="loadTimeWeaver">
<bean class="com.ctit.tools.MyLoadTimeWeaver"/>
</property>
这里的MyLoadTimeWeaver类在下面将会涉及到。
以上是所有的配置文件信息了。
×××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××
下面说一说类:
action层,service层都可以不用多说的。 在dao层要说明一点的是:
1. StudentDaoImpl.java, 这里一定要先merge下,然后在remove它。 public class StudentDaoImpl extends JpaDaoSupport implements IStudentDao { public void deleteStudent(Student student) { Student mergeStudent = this.getJpaTemplate().merge(student); getJpaTemplate().remove(mergeStudent); } }
2. 另外也说明另一点,在pojo包中的Student.java,它是普通的javabean,并没有继承什么类的。就像平常那样写就可以了。
3. 在页面中要用<%@ taglib uri="/struts-tags" prefix="s"%> 这里必须在WEB-INF下面有struts-tags.tld这个文件的哦。 我这里的项目是在WEB-INF下面有个tags目录,它下面就是了。
4. MyLoadTimeWeaver.java package com.ctit.tools; import org.springframework.instrument.classloading.SimpleLoadTimeWeaver; public class MyLoadTimeWeaver extends SimpleLoadTimeWeaver { @Override public ClassLoader getInstrumentableClassLoader() { return super.getInstrumentableClassLoader().getParent(); } }
至此,上面的也都说完了。保证你可以运行起来的。
×××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××
下面说说包的作用和问题:
1. 在pojo中的Student.java中用的标注: @Entity @Table(name="student") 这些都靠的是:toplink-essentials.jar 这个包在spring的spring-framework-2.5.6\lib\toplink这个目录下有。
2. 在applicationContext.xml配置文件中有aop:config这个配置信息。 它靠的是aspectjweaver.jar,这个包在spring-framework-2.5.6\lib\aspectj这个目录下。
3. struts2-spring-plugin-2.0.9.jar 这个包一定要加,因为这是整合struts和spring的必须的包。
如果还有什么必须介绍的包我以后在介绍。
4.struts2.0的包 struts2-core-2.0.9.jar xwork-2.0.4.jar(Webwork的核心技术包) commons-logging-1.0.4.jar freemarker-2.3.8.jar ognl-2.6.11.jar
发表评论
-
this.getJpaTemplate() createNativeQuery
2010-03-09 15:52 46711. 下面那个类的返回类型要注意它返回的结果是List< ... -
Spring aop execution 表达式
2010-01-27 16:03 16229Spring AOP 用户可能会经常使用 execution ... -
oracle.toplink.essentials.exceptions.DescriptorException
2010-01-27 16:01 1663Exception [TOPLINK-60] (Oracle ... -
Spring + toplink-essentials(JPA) is not a known entity type 问题解决
2010-01-08 14:08 2153第一种方法: 不能有loadTimeWeaver配置,包括 ... -
Hibernate依赖包简单介绍
2009-12-29 15:02 1373由于无法找到该文章的原创作者,在此无法注明出处,请作者见谅.如 ... -
Spring发布包内容详解
2009-12-29 15:01 1416由于无法找到该文章的 ... -
Entity must be managed to call remove
2009-12-22 12:07 4021struts2.0和spring2.5还有jpa在整合的时候会 ... -
there is no action mapped for namespace / and action name解决办法
2009-12-14 13:46 605821.-----首先查看你的struts.xml 文件是否在sr ...
相关推荐
**JPA+Spring2.5+Struts2.0整合详解** 在Java开发领域,Spring、Struts和JPA(Java Persistence API)是常见的三大框架,它们分别在依赖注入、MVC架构和对象关系映射方面发挥着重要作用。本实例将深入讲解如何将这...
Struts2.0、Spring2.5和JPA(Java Persistence API)是Java开发中常见的三大框架,它们各自承担着不同的职责,共同构建了一个高效、灵活的企业级应用开发环境。Struts2作为MVC(Model-View-Controller)框架,负责...
Struts2.0、Spring2.5和Hibernate3.2是经典的Java企业级开发框架组合,通常被称为SSH(Struts2、Spring、Hibernate)集成框架。这个组合在2000年代末到2010年代初广泛应用于构建大型、复杂的企业级Web应用。SSH框架...
本文将深入探讨如何将Spring 2.5、Struts 2.0和Hibernate 3.3这三大组件集成,以构建一个高效、灵活的Web应用程序。 **Spring框架** Spring是一个轻量级的容器框架,它提供依赖注入(DI)和面向切面编程(AOP)功能...
以上就是Spring 2.5、Hibernate 3.3和Struts 1.3整合过程中涉及的关键知识点和步骤。整合这三大框架可以构建出一个强大的Java Web应用,充分利用它们各自的优势,提高开发效率和代码质量。不过,随着技术的发展,...
标题 "ssh2(struts2+spring2.5+hibernate3.3+ajax)带进度条文件上传(封装成标签)" 涉及到的是一个基于Java Web的项目,利用了Struts2、Spring2.5、Hibernate3.3和Ajax技术,实现了文件上传并带有进度条显示的功能...
本文将详细介绍如何将Spring 2.5、Struts2.0和Hibernate 3.3进行整合,并提供一个适合初学者的入门案例——s2sh-login。 Spring框架作为核心的依赖注入(DI)和面向切面编程(AOP)容器,负责管理应用程序的组件和...
Struts2.0、Spring2.5和Hibernate3.2是Java开发中广泛使用的三大开源框架,它们分别在MVC(Model-View-Controller)架构的不同层面上提供强大的支持,形成了SSH(Struts2 + Spring + Hibernate)集成框架。...
这个项目的源码提供了使用Spring 2.5、Struts 2和Hibernate 3.2构建应用程序的实例,这对于学习和理解SSH框架的整合及实际应用有着重要的参考价值。 Spring是一个全面的后端应用程序框架,它提供了依赖注入(DI)和...
jbpm负责流程管理,Spring2.5作为整体的容器,管理各个组件的生命周期和依赖关系,Hibernate3.0处理数据库交互,而Struts2.0则作为前端控制器,处理用户请求并展示结果。这样的组合在当时的开发环境中非常流行,因为...
标题 "spring2.5 struts2.0 hibernate3.1" 涉及到的是一个经典的Java企业级开发框架组合,通常被称为“SSH”(Spring、Struts和Hibernate)。这个组合在过去的许多年里被广泛应用,为构建高效、可维护的Web应用程序...
Spring 2.5版本是Spring框架的一个里程碑,引入了更多新特性,如AOP(面向切面编程)的增强、支持JSR-303(Bean Validation)验证框架、对JSR-250(Common Annotations for the Java Platform)的支持以及改进的依赖...
标题 "Spring2.5 Struts2.0 TopLink Ext2例子" 涉及到的是一个集成使用四个关键开源框架的示例项目,这些框架在Web应用开发中扮演着重要角色。下面将详细介绍这些框架以及它们如何协同工作。 1. **Spring**(2.5...
标题中的"EXt2.1+sturts2.0+spring2.5+hibernate"是一个典型的Java Web开发技术栈,它包含了四个关键组件:EXT JS 2.1、Struts 2.0、Spring 2.5和Hibernate。这些技术在2000年代末至2010年代初是非常流行的,它们...
标题 "dwr2.0整合Struts1.3+hibernate3.1+spring2.5的项目" 涉及的是一个经典的Java Web开发技术集成,这其中包括Direct Web Remoting (DWR) 2.0、Struts 1.3、Hibernate 3.1和Spring 2.5。这个项目可能是为了展示...
整合Struts1时,需要的jar包包括struts-core、struts-taglib、struts-tiles等。 2. **Spring2.5框架**: Spring2.5是Spring框架的一个版本,它提供了一个全面的依赖注入容器,允许开发者轻松管理对象及其依赖关系...
Struts2.0、Spring2.5和Hibernate3.2是Java Web开发中经典的三大框架,它们的组合常被用于构建高效的企业级应用。这个压缩包集合提供了这三大框架的兼容性版本,旨在解决集成过程中可能出现的jar包冲突问题。 **...
这个"Spring2.5+Structs2+Hibernate3.3框架例子"是一个经典的组合,旨在帮助初学者理解这些框架如何协同工作,构建高效的企业级应用程序。 **Spring框架**:Spring 是一个全面的后端开发框架,它提供了依赖注入(DI...
标题“Spring之Spring2.5集成Struts2.2”涉及到的是在Web开发中整合两个非常流行的开源框架——Spring和Struts2的过程。这个过程旨在利用Spring的强大IoC(Inversion of Control,控制反转)和AOP(Aspect Oriented ...