spring配置文件的小问题
发布网友
发布时间:2024-10-01 13:20
我来回答
共3个回答
热心网友
时间:2024-12-05 01:19
请搞明白以下几点:
1:bean是什么
2:hibernate.cfg.xml是干嘛的,由Hibernate去管理sessionFactory及session和用Spring去管理sessionFactory及session的区别,为什么要把Hibernate整合进Spring里边
3:你的老师反向生成的时候其实用的是Hibernate里边的东东,而目地就是生成的这个东西Spring里要用。因为这是在用Spring去维护Hibernate。但Spring里本身没有生成表的类。
4:Spring里边的事务管理org.springframework.orm.hibernate3.HibernateTransactionManager
Spring里边的事务*:org.springframework.transaction.interceptor.TransactionInterceptor
<property name="transactionManager"> <ref bean="txManager" /> </property> 这是使用哪个类进行事务管理。
<property name="transactionAttributes">
<props>
<prop key="*">PROPAGATION_REQUIRED</prop>
<prop key="find*">PROPAGATION_REQUIRED,readOnly</prop>
</props>
</property> 配置事务管理和类型和级别
<bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator"> <property name="beanNames"><value>*Service</value> </property>
<property name="interceptorNames"> <list><value>transactionInterceptor</value></list>
</property>
</bean>
这个是由Spring的org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator去创建哪些bean,<property name="beanNames"><value>*Service</value> </property> 就是这些bean,*是通配符。
<property name="interceptorNames"><list><value>transactionInterceptor</value></list>这是指定使用哪些事务*。
Spring学习的书:<<Spring揭秘>>(书封面是蓝天草原上有棵大树)。人民邮电出版社99块钱。王福强 著。相当不错。对新手来说有些难。慢慢熬吧,总是有用的。不是做广告的。(-^-)
热心网友
时间:2024-12-05 01:20
(1):<bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> </bean>:意思是配置事务管理器 ,依赖于上面的sessionFactory。
(2):<bean id="transactionInterceptor" class="org.springframework.transaction.interceptor.TransactionInterceptor"> </bean>事务*,激活事务的bean,依赖于上面的txManager。
<property name="transactionAttributes"> 配置事务的属性。
(3):<bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator"> :事务处理代理bean。
<property name="beanNames"> :需要代理的bean的名字,一般事务都放在service中。
<property name="interceptorNames"> :需要的事务*。
热心网友
时间:2024-12-05 01:20
这是配置事务呢,