一夕JZ 2013-07-09 09:37 采纳率: 50%
浏览 2581
已采纳

Spring OpenSessionInView没有起作用

我的项目采用Spring OpenSessionInView的事务控制方式,但是没有起作用,高手帮忙看看,谢谢啦~~

  • 写回答

1条回答

  • 一夕JZ 2013-07-09 09:39
    关注

    web.xml:

    hibernateFilter
    org.springframework.orm.hibernate3.support.OpenSessionInViewFilter

    singleSession
    true



    hibernateFilter
    .

    Spring配置:

    <bean id="propertyConfig"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location">
            <value>classpath:config/jdbc.properties</value>
        </property>
    </bean>
    <bean id="dataSourceOracle" class="com.jolbox.bonecp.BoneCPDataSource"
        destroy-method="close">
        <property name="driverClass" value="${jdbc.driver}" />
        <property name="jdbcUrl" value="${jdbc.url}" />
        <property name="username" value="${jdbc.user}" />
        <property name="password" value="${jdbc.password}" />
        <property name="idleConnectionTestPeriod" value="60" />
        <property name="idleMaxAge" value="240" />
        <property name="maxConnectionsPerPartition" value="6" />
        <property name="minConnectionsPerPartition" value="2" />
        <property name="partitionCount" value="1" />
        <property name="acquireIncrement" value="5" />
        <property name="statementsCacheSize" value="100" />
        <property name="releaseHelperThreads" value="3" />
    </bean>
    

    class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
    value="classpath:hibernate.cfg.xml">

     <bean id="parentDao" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <description>All Dao bean's parent bean, define the common sessionFactory property of Dao implements classes  </description>
        <property name="sessionFactory" ref="sessionFactory" />     
    </bean>
    
    <bean id="transactionProxy" abstract="true" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"> 
        <property name="transactionManager" ref="parentDao"></property>
        <property name="transactionAttributes"> 
            <props>
                <prop key="*">PROPAGATION_REQUIRED</prop> 
            </props> 
        </property> 
    </bean>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 fluent的在模拟压强时使用希望得到一些建议
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 Web.config连不上数据库
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。
  • ¥15 怎么配置广告联盟瀑布流
  • ¥15 Rstudio 保存代码闪退