ssh框架添加时添加不到数据库问题

看看事务是不是没写,地址是否正确

<aop:config>
       <!-- 指定servic范围所有方法引用事务通知 -->
        <aop:pointcut id="serviceMethod"
            expression="execution(* com.bawei.test.service.*.*(..))" />
            <!-- 组合事务通知和service范围 -->
        <aop:advisor advice-ref="txAdvice" pointcut-ref="serviceMethod" />
    </aop:config>

原文地址:https://www.cnblogs.com/Xuesk/p/6912931.html