如何在Spring中运行Proxied Bean的Destroy-method

时间:2012-11-13 21:36:29

标签: java spring

我遇到需要设置池化数据源代理的情况,我的代码如下:

<bean id="dataSourceBean" class="com.mchange.v2.c3p0.ComboPooledDataSource" 
    destroy-method="close">
  <property name="driverClass" value="${jdbc.driverClassName}"/>
  <property name="jdbcUrl" value="${jdbc.url}"/>
  <property name="properties">
    <props>
        <prop key="c3p0.minPoolSize">0</prop>
        <prop key="hc3p0.maxPoolSize">100</prop>
        <prop key="hc3p0.timeout">60000</prop>
        <prop key="c3p0.acquire_increment">10</prop>
        <prop key="c3p0.max_statement">50</prop>
        <prop key="user">${jdbc.username}</prop>
        <prop key="password">${jdbc.password}</prop>
    </props>
  </property>
</bean>

<bean id="dataSourceLockAdvice" 
    class="com.ndot2.datasource.DataSourceLockAdvice"/>

<bean id="dataSource" class="org.springframework.aop.framework.ProxyFactoryBean">
    <property name="target" ref="dataSourceBean"/>

    <property name="interceptorNames">
        <list>
            <value>dataSourceLockAdvice</value>
        </list>
    </property>
</bean>

我遇到的问题是连接不再被关闭,似乎代理数据源的destroy方法不再被调用...

我如何调用Proxied Bean的Close方法?或者我应该以不同方式实施建议吗?

我已经尝试过在互联网上搜索,但我似乎无法找到答案,非常感谢!

编辑:

根据要求,这是我的交易管理声明(我使用Appfuse)

<aop:config>
    <aop:advisor id="userManagerTx" advice-ref="userManagerTxAdvice" pointcut="execution(* *..service.UserManager.*(..))" order="0"/>
    <aop:advisor id="userManagerSecurity" advice-ref="userSecurityAdvice" pointcut="execution(* *..service.UserManager.saveUser(..))" order="1"/>
    <aop:advisor id="managerTx" advice-ref="txAdvice" pointcut="execution(* *..service.*Manager.*(..))" order="2"/>
</aop:config>

<!-- Enable @Transactional support -->
<tx:annotation-driven/>

<!-- Enable @AspectJ support -->
<aop:aspectj-autoproxy/>

<!-- Activates scanning of @Autowired -->
<context:annotation-config/>

<!-- Activates scanning of @Service -->
<context:component-scan base-package="com.ndot2.service"/>

<tx:advice id="txAdvice">
    <tx:attributes>
        <!-- Read-only commented out to make things easier for end-users -->
        <!-- http://issues.appfuse.org/browse/APF-556 -->
        <!--tx:method name="get*" read-only="true"/-->
        <tx:method name="*"/>
    </tx:attributes>
</tx:advice>

<tx:advice id="userManagerTxAdvice">
    <tx:attributes>
        <tx:method name="save*" rollback-for="UserExistsException"/>
    </tx:attributes>
</tx:advice>

<bean id="userSecurityAdvice" class="com.ndot2.service.UserSecurityAdvice"/>

我没有@Transactional或@AspectJ驱动的交易管理...

1 个答案:

答案 0 :(得分:0)

如果应用程序中存在连接泄漏,则第一步是尝试使用适当的监视工具本地化发生泄漏的位置。至于c3p0,我相信它通过JMX提供连接监控,正如related question中所讨论的那样。

因此,如果在某些特定服务调用期间发生泄漏,您可以查看调试和监视工具。

然后你应该注意不同的特性:例如,在你的配置中,UserManager有多个交易建议,这可能是原因。在具有带注释配置的Spring容器中,一个常见错误是bean未被事务代理包装,因为带注释的事务管理是configured for the different IoC container。另一个可能的原因是您的方法尝试手动管理事务,并且无法正确执行此操作。