浏览 1391 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2012-10-07
最后修改:2012-10-07
本想使用HibernateTemplate类的find(String hql)方法获取对应表的所有实例集合。但是遗憾的发现list集合中的bean对象没有主键,其他的值依旧存在,单独使用hibernate没有出现过这种情况。我是用的是spring2.5.6版本的,请问怎么才能是list集合中的bean对象中包含主键,使得与单独使用hibernate获得一样的效果
<?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.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> <!-- 配置hibernate信息--> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="configLocation" value="classpath:hibernate.cfg.xml"> </property> </bean> <!-- model配置 --> <bean id="person" class="com.fzl.ssh.beans.Person"> </bean> <!-- action配置 --> <bean id="personAction" class="com.fzl.ssh.actions.PersonAction" depends-on="personService"> <!-- action的成员变量的name必须和引用的bean的id一样,卧槽!!绝对坑爹 --> <property name="personService"> <ref bean="personService"/> </property> </bean> <!-- service配置 --> <!----> <bean id="baseService" class="com.fzl.ssh.service.BaseServiceImpl" depends-on="baseDao"> <property name="dao"> <ref bean="baseDao" /> </property> </bean> <bean id="personService" class="com.fzl.ssh.service.PersonServiceImpl" depends-on="personDao"> <property name="dao"> <ref bean="personDao" /> </property> </bean> <!-- dao配置 --> <!----> <bean id="baseDao" class="com.fzl.ssh.dao.BaseDaoImpl"> <property name="sessionFactory"> <ref bean="sessionFactory"/> </property> </bean> <bean id="personDao" class="com.fzl.ssh.dao.PersonDaoImpl"> <property name="sessionFactory"> <ref bean="sessionFactory" /> </property> </bean> <!-- 事务管理 --> <!-- spring管理事物bean,核心类 --> <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory" ref="sessionFactory"/> </bean> <!-- 事务管理,相当于切面 ,引用上面的核心类作为插入方法--> <tx:advice id="txAdvice" transaction-manager="txManager"> <tx:attributes> <tx:method name="save*" propagation="REQUIRED"/> <tx:method name="add*" propagation="REQUIRED"/> <tx:method name="update*" propagation="REQUIRED"/> <tx:method name="del*" propagation="REQUIRED"/> <tx:method name="sel*" propagation="REQUIRED"/> </tx:attributes> </tx:advice> <!-- 动态代理默认返回的是接口类型,所以如果要代理类需要设置 proxy-target-class 属性 --> <aop:config proxy-target-class="true" > <aop:pointcut id="daoMethods" expression="execution(* com.fzl.ssh.dao..*(..))"/> <aop:advisor advice-ref="txAdvice" pointcut-ref="daoMethods"/> </aop:config> </beans>
这是使用Spring的HibernateTemplate的find方法所得到的结果,没有id
单独使用Hibernate:一切正常,有id,有图有真相 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |