spring配置文件的小问题
<beanid="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessi...
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="configLocation" value="classpath:hibernate.cfg.xml"> </property></bean> 上面的sessionFactory 是我在SSH整合的时候 用数据库的表直接反键生成的老师把hibernate自己生成的Factory干掉了 然后加上下面三段 我想问下各位 哪位能说说这几个到底都是什么作用么 纠结了好长时间 只知道用的时候直接粘贴 原理一点也不懂 希望哪位能给个详细点的解释多谢多谢<bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory"> <ref bean="sessionFactory" /> </property></bean><bean id="transactionInterceptor" class="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><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>
展开
3个回答
展开全部
请搞明白以下几点:
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块钱。王福强 著。相当不错。对新手来说有些难。慢慢熬吧,总是有用的。不是做广告的。(-^-)
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块钱。王福强 著。相当不错。对新手来说有些难。慢慢熬吧,总是有用的。不是做广告的。(-^-)
展开全部
(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"> :需要的事务拦截器。
(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"> :需要的事务拦截器。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这是配置事务呢,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询