`

Hibernate.cfg.xml由Hibernate管理,Hibernate的session与Tr

阅读更多

SSH框架的组合方式一:Hibernate.cfg.xml由Hibernate自己管理

说明:我开发的环境是:MyEclipse5.5与JDK1.5

1,应先写好包
com.mengya.entity:实本包
com.mengya.dao:DAO接口包
com.mengya.dao.imple实体包
com.megnya.util:uitl包

2,加上Spring支持

3,加上Struts支持

4,加上Hibernate支持

5,由Hibernate创建entity类和DAO
可以在dao中重载一下delete方法,由ID删除对象
由产生的DAO抽出接口来分别把它们分到com.megnya.dao与com.mengya.dao.imple包中

6,在Spring的applicationContext.xml中分为applicationContext-beans.xml(普通的beans)
和applicationContext-comon.xml(公共的beans)(个人习惯问题,可以不用分开)

7,修改applicationContext-comon.xml有DTD
修改为:
<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
     ">
这样写的话后面写起来比较方便

applicationContext-comon.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
      ">
     
   <!-- 配置公共的部分 -->
  
   <!-- 配置sessionFactory -->
   <bean id="sessionFactory"
    class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
    <property name="configLocation"
     value="classpath:hibernate.cfg.xml">
    </property>
   </bean>
  
   <!-- 配置事务管理器 -->
   <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory" />
   </bean>
  
   <!-- 配置事务传播属性 -->
   <tx:advice id="txAdvice" transaction-manager="transactionManager">
    <tx:attributes>
     <tx:method name="save*" propagation="REQUIRED"/>
     <tx:method name="delete*" propagation="REQUIRED"/>
     <tx:method name="merge" propagation="REQUIRED"/>
     <tx:method name="*" read-only="true"/>
    </tx:attributes>
   </tx:advice>
  
   <!-- 配置AOP -->
   <aop:config>
    <!-- com.mengya.dao.imple下在所有类,所有类的所有方法(..表示任何形式的参数)都是poincut切入点 -->
    <aop:pointcut id="allMethod" expression="execution(* com.mengya.dao.imple.*.*(..))"/>
    <aop:advisor advice-ref="txAdvice" pointcut-ref="allMethod"/>
   </aop:config>
  
   </beans>
  
8,加上Struts的action与actionForm
在actionForm中封装Hibernate生成的Javabean
修改struts-config.xml中的action的type将com.mengya.struts.action.StuAction修改为:org.springframework.web.struts.DelegatingActionProxy

9,在Spring中配置Struts的action

Struts中的action的type值改为:org.springframework.web.struts.DelegatingActionProxy(代理)

<bean id="StudentDAO" class="com.mengya.dao.imple.StudentDAO">
   <property name="sessionFactory">
    <ref bean="sessionFactory" />
   </property>
</bean>
注:DAO应继承HibernateDaoSupport

<!-- 配置Struts的action,bean的name值为action的path -->
<bean name="/stu" class="com.mengya.struts.action.StuAction">
   <property name="studao" ref="StudentDAO" />
</bean>

 

10,在web.xml中配置
<!-- 使用Spring提供的encoding的filter -->
<filter>
<filter-name>springfitler</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
   <param-name>encoding</param-name>
   <param-value>gbk</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>springfiter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

<!-- 若不在web.xml中配置如下内容则:
   <context-param>
   <param-name>contextConfigLocation</param-name>
   <param-value>classpath*:applicationContext-*.xml</param-value>
    </context-param>
   <listener>
   <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
   </listener>
-->  

就是在struts-config.xml加上

<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
  <set-property property="contextConfigLocation" value="classpath*:applicationContext-*.xml"/>
 </plug-in>

11,好了.OK,组合成功!

个人说明:集合后可能会出错

1,可能是少了commons-pool-1.3.jar包(MyEclipse5.5)

2,可能是要重盖hibernate-annotations.jar包(MyEclipse5.1)

分享到:
评论

相关推荐

    hibernate.cfg.xml

    hibernate.cfg.xml hibernate框架的配置文件

    Hibernate配置文件hibernate.cfg.xml中配置信息详解

    Hibernate配置文件hibernate.cfg.xml中配置信息详解!

    hibernate.cfg.xml文件

    `hibernate.cfg.xml`文件主要由以下几个部分组成: 1. **XML声明**:文件以标准的XML声明开始,指定文档的编码和版本。 2. **Hibernate配置**:`&lt;!DOCTYPE hibernate-configuration PUBLIC ...&gt;`定义了Hibernate...

    spring如何摒弃hibernate.cfg.xml

    在现代的Spring应用程序中,整合Hibernate时,我们通常会选择使用Spring的IoC(Inversion of Control)容器来管理数据访问层,而不是直接依赖于Hibernate的配置文件`hibernate.cfg.xml`。这是因为Spring提供了更高级...

    hibernate.cfg.xml 配置 和数据库驱动

    《hibernate.cfg.xml配置与数据库驱动详解》 在Java Web开发中,Hibernate是一个非常流行的持久化框架,它简化了数据库操作,使开发者能够更专注于业务逻辑而不是底层数据存储。而`hibernate.cfg.xml`文件是...

    ssh整合,不带hibernate.cfg.xml的方式

    在这个场景中,我们关注的是不通过传统的`hibernate.cfg.xml`文件来配置Hibernate,而是借助Spring框架的`LocalSessionFactoryBean`进行整合。 首先,`hibernate.cfg.xml`是Hibernate传统配置文件,它包含了数据库...

    hibernate.cfg.xml文件详细解释

    ### hibernate.cfg.xml 文件详解 #### 一、概述 `hibernate.cfg.xml` 是 Hibernate 框架的核心配置文件之一,它主要用于配置 Hibernate 的运行环境。通过该文件,开发者可以指定数据库连接信息、日志级别、性能...

    Hibernate.cfg.xml配置总结

    综上所述,Hibernate.cfg.xml配置文件是Hibernate与数据库交互的关键,正确配置能够确保程序高效、稳定地运行。对于开发人员来说,深入理解和熟练掌握这些配置是提升开发效率和系统性能的重要步骤。

    hibernate配置文件hibernate.cfg.xml的详细解释

    ### Hibernate配置文件hibernate.cfg.xml的详细解释 #### 一、引言 在Java持久化框架Hibernate中,`hibernate.cfg.xml`是核心配置文件之一,它用于配置Hibernate的运行环境,包括数据库连接信息、性能参数以及其他...

    Hibernate配置文件hibernate.cfg.xml范本

    这是Hibernate的配置文件,hibernate.cfg.xml的具体写法,共友友们参考~~谢谢~

    08.拓薪教育-hibernate4.3的hibernate.cfg.xml基本配置.part2

    高级Hibernate4开发技术:ORM思想,hibernate介绍,hibernate.cfg.xml配置,hbm.xml映射文件详解,主键生成策略使用,PO对象状态及状态的转换分析、一级缓存,Hibernate数据检索技术,Hibernate高级映射技术,...

    (hibernate调用C3p0)hibernate.cfg.xml

    (hibernate调用C3p0)hibernate.cfg.xml

    hibernate.cfg.xml所有属性值

    hibernate.cfg.xml中各节点的所有属性值,取自hibernate官网,纯天然无污染。原装!

    JavaEE spring和Hibernate整合(有hibernate.cfg.xml)

    通常,会使用HibernateTransactionManager作为事务管理器,并通过Bean来注入hibernate.cfg.xml中的配置。 4. 定义DAO接口和实现:创建数据访问对象(DAO)接口,然后提供一个实现类。在实现类中,注入...

    08.拓薪教育-hibernate4.3的hibernate.cfg.xml基本配置.part1

    高级Hibernate4开发技术:ORM思想,hibernate介绍,hibernate.cfg.xml配置,hbm.xml映射文件详解,主键生成策略使用,PO对象状态及状态的转换分析、一级缓存,Hibernate数据检索技术,Hibernate高级映射技术,...

Global site tag (gtag.js) - Google Analytics