当前位置: 首页 > 知识库问答 >
问题:

多个表上的Spring事务和回滚

东门清夷
2023-03-14

我正在使用DAO进行事务管理。场景是创建包含quote_line和客户列表的新报价。如果客户不存在,它将把它插入表客户中。我的代码是如下架构:

    @Entity
    @Table(name = "quote")
    public class Quote {
      @Id
        @GeneratedValue(strategy = GenerationType.AUTO)
        private Long id;
       //....properties
       @ManyToOne(fetch = FetchType.EAGER)
        @JoinColumn(name = "customer_id", nullable = true)
        private Customer customer;


        @OneToMany(cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REFRESH}, mappedBy = "quote")
        @Cascade({org.hibernate.annotations.CascadeType.SAVE_UPDATE,
                org.hibernate.annotations.CascadeType.DELETE,
                org.hibernate.annotations.CascadeType.MERGE,
                org.hibernate.annotations.CascadeType.PERSIST,
                org.hibernate.annotations.CascadeType.DELETE_ORPHAN})
        private Set<QuoteLine> quoteLines;

        //... methods
    }

    @Entity
    @Table(name = "quote_line")
    public class QuoteLine {

        @Id
        @GeneratedValue(strategy = GenerationType.AUTO)
        private Long id;

        //....properties


        @ManyToOne(fetch = FetchType.EAGER)
        @JoinColumn(name = "quote_id", nullable = false)
        private Quote quote;
        //... methods
    }

    public interface QuoteDao extends CrudRepository<Quote, Long> {
        //... methods
    }

    public interface QuoteLineDao extends CrudRepository<QuoteLineDao, Long> {
        //... methods
    }

    public interface CustomerDao extends CrudRepository<CustomerDao, Long> {
        //... methods
    }

    @Service
    public class QuoteService{

        @Autowired
        private QuoteDao quoteDao;

        @Autowired
        private QuoteLineDao quoteLineDao;

        @Autowired
        private CustomerDao customerDao;

        @Transactional(propagation=Propagation.REQUIRED, rollbackFor=Exception.class)
        public Quote save(Quote quote) {

            try{
                quoteLineDao.delete(new Long(44));
                System.out.println("°°°°°°°°°°°°°°°°°°Line 44 deleted");
                return  quoteDao.save(quote); 
            } catch(Exception e){
                Logger.getLogger(QuoteService.class).log(Logger.Level.FATAL, e);
            }
            return null;
        }
    }

//Application.java
@EnableAutoConfiguration
@Configuration
@EnableTransactionManagement
@ComponentScan
public class Application {

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }

}

//StatelessAuthenticationSecurityConfig.java
@EnableWebSecurity
@Configuration
@EnableTransactionManagement
@Order(1)
public class StatelessAuthenticationSecurityConfig extends WebSecurityConfigurerAdapter {

    @Autowired
    private UserDetailsService userDetailsService;

    @Autowired
    private TokenAuthenticationService tokenAuthenticationService;

    public StatelessAuthenticationSecurityConfig() {
        super(true);
    }

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http
                .exceptionHandling().and()
                .anonymous().and()
                .servletApi().and()
                .headers().cacheControl().and()
                .authorizeRequests()

                //allow anonymous resource requests
                .antMatchers("/").permitAll()
                .antMatchers("/favicon.ico").permitAll()
                .antMatchers("/resources/**").permitAll()

                //allow anonymous POSTs to login
                .antMatchers(HttpMethod.POST, "/api/login").permitAll()

                                //allow anonymous POSTs to customer
                //.antMatchers(HttpMethod.POST, "/api/customer/**").permitAll()
                                .antMatchers("/api/**").hasRole("USER")
                                .antMatchers("/api/invoice/**").permitAll()

                                //defined Admin only API area
                .antMatchers("/api/admin/**").hasRole("ADMIN")

                                //defined Admin only API area
                .antMatchers("/api/superadmin/**").hasRole("SUPER_ADMIN")

                //allow anonymous GETs to API
                //.antMatchers(HttpMethod.GET, "/api/**").permitAll()



                //all other request need to be authenticated
                .anyRequest().hasRole("USER").and()             

                // custom JSON based authentication by POST of {"username":"<name>","password":"<password>"} which sets the token header upon authentication
                .addFilterBefore(new StatelessLoginFilter("/api/login", tokenAuthenticationService, userDetailsService, authenticationManager()), UsernamePasswordAuthenticationFilter.class)

                // custom Token based authentication based on the header previously given to the client
                .addFilterBefore(new StatelessAuthenticationFilter(tokenAuthenticationService), UsernamePasswordAuthenticationFilter.class);
    }

    @Bean
    @Override
    public AuthenticationManager authenticationManagerBean() throws Exception {
        return super.authenticationManagerBean();
    }

    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.userDetailsService(userDetailsService).passwordEncoder(new BCryptPasswordEncoder());
                //auth.jdbcAuthentication().dataSource(null).usersByUsernameQuery("").authoritiesByUsernameQuery("");

    }

    @Override
    protected UserDetailsService userDetailsService() {
        return userDetailsService;
    }
}

在调试模式下,我只有两个变量:1-这(QuoteService)2-quote

这是th日志:

---------------------------------
==Granting role ADMIN
==Granting role USER
Hibernate: select quoteline0_.id as id1_6_0_, quoteline0_.position as position2_6_0_, quoteline0_.quote_id as quote_id4_6_0_, quoteline0_.line_id as line_5_6_0_, quoteline0_.title as title3_6_0_, quote1_.id as id1_4_1_, quote1_.account_id as account20_4_1_, quote1_.address_line1 as address_2_4_1_, quote1_.address_line2 as address_3_4_1_, quote1_.address_line3 as address_4_4_1_, quote1_.address_line4 as address_5_4_1_, quote1_.city as city6_4_1_, quote1_.company_name as company_7_4_1_, quote1_.country as country8_4_1_, quote1_.customer_id as custome21_4_1_, quote1_.date_accepted as date_acc9_4_1_, quote1_.date_created as date_cr10_4_1_, quote1_.date_validity as date_va11_4_1_, quote1_.email as email12_4_1_, quote1_.fax as fax13_4_1_, quote1_.name as name14_4_1_, quote1_.phone as phone15_4_1_, quote1_.postal_code as postal_16_4_1_, quote1_.reference as referen17_4_1_, quote1_.subject as subject18_4_1_, quote1_.total as total19_4_1_, customer2_.id as id1_1_2_, customer2_.account_id as account15_1_2_, customer2_.address_line1 as address_2_1_2_, customer2_.address_line2 as address_3_1_2_, customer2_.address_line3 as address_4_1_2_, customer2_.address_line4 as address_5_1_2_, customer2_.city as city6_1_2_, customer2_.company_name as company_7_1_2_, customer2_.country as country8_1_2_, customer2_.email as email9_1_2_, customer2_.fax as fax10_1_2_, customer2_.name as name11_1_2_, customer2_.phone as phone12_1_2_, customer2_.postal_code as postal_13_1_2_, customer2_.url as url14_1_2_, line3_.id as id1_9_3_, line3_.account_id as account_3_9_3_, line3_.title as title2_9_3_ from quote_line quoteline0_ inner join quote quote1_ on quoteline0_.quote_id=quote1_.id left outer join customer customer2_ on quote1_.customer_id=customer2_.id left outer join line line3_ on quoteline0_.line_id=line3_.id where quoteline0_.id=?
°°°°°°°°°°°°°°°°°°Line 44 deleted
Hibernate: insert into quote (account_id, address_line1, address_line2, address_line3, address_line4, city, company_name, country, customer_id, date_accepted, date_created, date_validity, email, fax, name, phone, postal_code, reference, subject, total) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Hibernate: insert into quote_line (position, quote_id, line_id, title) values (?, ?, ?, ?)
2015-12-22 13:40:46.068  WARN 3807 --- [nio-8080-exec-1] o.h.engine.jdbc.spi.SqlExceptionHelper   : SQL Error: 1048, SQLState: 23000
2015-12-22 13:40:46.068 ERROR 3807 --- [nio-8080-exec-1] o.h.engine.jdbc.spi.SqlExceptionHelper   : Column 'quote_id' cannot be null
2015-12-22 13:40:46.079 ERROR 3807 --- [nio-8080-exec-1] c.e4ms.artin.service.impl.QuoteService   : org.springframework.dao.DataIntegrityViolationException: could not execute statement; SQL [n/a]; constraint [null]; nested exception is org.hibernate.exception.ConstraintViolationException: could not execute statement
2015-12-22 13:40:46.103 ERROR 3807 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.transaction.TransactionSystemException: Could not commit JPA transaction; nested exception is javax.persistence.RollbackException: Transaction marked as rollbackOnly] with root cause

javax.persistence.RollbackException: Transaction marked as rollbackOnly
    at org.hibernate.jpa.internal.TransactionImpl.commit(TransactionImpl.java:74)
    at org.springframework.orm.jpa.JpaTransactionManager.doCommit(JpaTransactionManager.java:515)
    at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:757)
    at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:726)
    at org.springframework.transaction.interceptor.TransactionAspectSupport.commitTransactionAfterReturning(TransactionAspectSupport.java:496)
    at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:276)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:95)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:653)
    at com.e4ms.artin.service.impl.QuoteService$$EnhancerBySpringCGLIB$$b74b9c5.save(<generated>)
    ...

您可以注意到,消息“第44行删除”已打印,但没有从hibernate查询中删除的痕迹。

这段代码不起作用:使用customerDao和quoteLineDao的事务不会将对象持久化到数据库中。我以为传播=传播。REQUIRED将强制所有Dao使用相同的会话,因此将执行不同的事务,如果发生错误,所有事务都将回滚。我发现的唯一解释是自动连接的Dao使用不同的会话。我试过繁殖=繁殖。支持-

你能解释一下为什么这不起作用吗?我该如何纠正?

任何帮助将不胜感激!

谢谢!

共有1个答案

农鸿德
2023-03-14

更新我的答案:

  1. 您希望您的“公共报价保存(报价报价)”方法是事务性的
  2. 调用此方法时,事务在TransactionInterceptor中开始,并从代理中调用“公共报价保存(报价报价)”。
  3. 行“quoteLineDao.delete(新长(44))工作正常
  4. “系统输出打印”行(“删除第44行中的“°°”或“°”)工作正常
  5. 行“quoteDao.save(quote);”给出了约束冲突异常。事务被标记为回滚。
  6. 您正在捕获并使用此异常,而不是传播此异常。
  7. 方法“PublicQuote save(Quote Quote)”将返回null,因为行“return null;”
  8. 现在代码到达事务拦截器,由于该拦截器没有异常,它尝试提交,但事务已经标记为回滚,因此失败

解决方案:-由于您的事务需要,您不能消费异常,而是传播异常。

改为以下内容。添加了throw语句。

try{
      quoteLineDao.delete(new Long(44));
      System.out.println("°°°°°°°°°°°°°°°°°°Line 44 deleted");
      return  quoteDao.save(quote); 
} catch(Exception e){
      Logger.getLogger(QuoteService.class).log(Logger.Level.ERROR, e);
      throw e;
}

此链接中提供了分步说明:无法提交 JPA 事务:标记为仅回滚的事务

 类似资料:
  • 我有一个事务性方法,我想调用另一个可能引发RuntimeException的方法。 问题是,当引发异常时,事务被标记为rollbackOnly。 编辑: 我不认为这是重复指定@Transactional rollbackFor也包括RuntimeException,因为异常最终会被捕获。 问题可能类似,因为它也涉及事务和回滚。

  • 我正在使用spring boot和spring-data-jpa开发一个应用程序,其中我有一个方法,它可以做两件事: 下面是你的方法:

  • 我有一个场景如下 我的问题是,对于一个给定的流,我可能有两个请求同时调用这个方法。我希望methodC抛出乐观锁定失败和回滚事务的异常。 发生的情况如下:R1和R2调用methodA->methodB(启动一个新事务)->methodC(启动一个新事务):两个都读取相同的实体版本,都进行相同的更改并调用merge->methodC完成流回methodB->methodB完成强制事务提交->事务提交

  • 我在这里尽量简明扼要。我已经研究了网络上报告的许多类似问题,并根据这些问题评估了我的问题。但是,这并没有解决我的问题。所以我终于把这个放上去了。 我有一个带有默认值的spring注释的事务性服务(在实现的类方法上进行了注释)。该服务通过直接调用mybatis映射器方法(在服务中自动连线)来执行一些插入(在循环中)和无参数存储过程调用。 我在Tomcat和驱动程序管理器连接单元测试中使用JNDI连接

  • -ZJ 以下是我在Application.Properties中的数据源设置:

  • 我在运行于Tomcat7的web应用程序中使用Spring3.2和JPA以及Hibernate4。应用程序分为控制器类、服务类和DAO类。服务类在类和方法级别具有带注释的事务配置。DAO是由@PersistenceContext注释注入实体管理器的普通JPA。 我打开了org的调试日志记录。springframework。交易并注意到,“创建新交易”、“打开新EntityManager”、“获取…