Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/spring-mvc/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Spring MVC JdbcTemplate事务性注释不起作用_Spring_Spring Mvc_Spring Transactions - Fatal编程技术网

Spring MVC JdbcTemplate事务性注释不起作用

Spring MVC JdbcTemplate事务性注释不起作用,spring,spring-mvc,spring-transactions,Spring,Spring Mvc,Spring Transactions,在一个http post请求中有两个insert操作。差不多 @Service public class StudentService { @Transactional(rollbackFor = Exception.class, propagation = Propagation.REQUIRED) public int create(final Student student) { // insert into table 1 // ins

在一个http post请求中有两个insert操作。差不多

@Service
public class StudentService {

    @Transactional(rollbackFor = Exception.class, propagation = Propagation.REQUIRED)
    public int create(final Student student) {
        // insert into table 1

        // insert into table 2 using id return from insert 1, but something BAD happen here
    }
}
因此,我在方法级别添加了@Transactional,如上所示

为了让它工作,我添加了这个tx:annotation-driven

组件扫描将基本上扫描所有类,包括控制器、服务、模型、视图模型、助手类等

如果删除tx:annotation-driven,@transactional将无法工作。 但一旦我添加了这个tx:annotation-driven,就会出现一些错误,比如

Error creating bean with name 'homeController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.app.service.StudentService com.app.controller.HomeController.studentRepository; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'studentService' defined in file [/path/workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/MathSchool/WEB-INF/classes/com/app/service/StudentService.class]: Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: org/springframework/cglib/transform/impl/MemorySafeUndeclaredThrowableStrategy
我怎样才能使这个@transactional工作。

多亏了

我的项目使用spring 4.1.6和spring security 3.2.7

根据这份文件

SpringSecurity4现在需要Spring4,我想是Spring4.0或4.1。很方便,Spring Security 我想3.2.x只适用于Spring3.2.x和Spring4.0


我所做的唯一一件事是将Spring 4.1降级为Spring 4.0

可能的@Jens副本。我有Spring core jar。你也有Spring aop吗?@Jens是的,Spring-aop-3.2.13。发布你必须添加与你的Spring core相同的Spring aop版本。
<?xml version="1.0" encoding="UTF-8"?>
<beans 
    xmlns="http://www.springframework.org/schema/beans"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">

    <mvc:annotation-driven />
    <mvc:resources mapping="/res/**" location="/res/" />

    <context:component-scan base-package="com.app" />

    <bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>

    <bean id="dataSource" name="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver" />
        <property name="url" value="jdbc:mysql://xxx:3306/AppDb" />
        <property name="username" value="username" />
        <property name="password" value="password" />
    </bean>

    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true"/>
</beans>
Error creating bean with name 'homeController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.app.service.StudentService com.app.controller.HomeController.studentRepository; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'studentService' defined in file [/path/workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/MathSchool/WEB-INF/classes/com/app/service/StudentService.class]: Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: org/springframework/cglib/transform/impl/MemorySafeUndeclaredThrowableStrategy