首页 > 编程语言 > 详细

spring3+hibernate4

时间:2014-03-12 16:30:47      阅读:439      评论:0      收藏:0      [点我收藏+]

 

1、

---恢复内容结束---

在Spring里,Hibernate的资源要交给Spring来管理。Hibernate及其SessionFactory等只是Spring一个特殊的Bean,由Spring负责实例化与销毁。

由于Hibernate全部交给Spring来管理,HIbernate不再需要自己的配置文件,所有的参数都在Spring的src/applicationContext.xml中配置

 

 

在开发Spring的过程中,有时会出现Eclipse不能识别<tx:advice/>标签。 

1.提示出现以下错误: 
bubuko.com,布布扣 
这个错误的原因是:我们在定义申明AOP的时候,没有加载schema。 

2.Spring的配置文件 
<?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:tx="http://www.springframework.org/schema/tx" 
       xmlns:aop="http://www.springframework.org/schema/aop" 

       xsi:schemaLocation="http://www.springframework.org/schema/beans 
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
           http://www.springframework.org/schema/tx 
           http://www.springframework.org/schema/tx/spring-tx-2.5.xsd 
           http://www.springframework.org/schema/aop 
           http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> 

红色标记的内容是需要添加的内容,添加之后Eclipse就能够识别<tx:advice/>,<aop:config/> 
标签了。 

spring3+hibernate4,布布扣,bubuko.com

spring3+hibernate4

原文:http://www.cnblogs.com/xingyyy/p/3596246.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!