美文网首页
springboot 2.0开启事务

springboot 2.0开启事务

作者: 厚颜无齿 | 来源:发表于2019-10-15 00:41 被阅读0次

1

  jpa:
    show-sql: true
    hibernate:
      ddl-auto: update
    database-platform: org.hibernate.dialect.MySQL5InnoDBDialect  #不加这句则默认为myisam引擎

2

@SpringBootApplication
@EnableTransactionManagement
public class MyLeadingApplication {

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

}

3 @Transactional添加到类或者是公开的方法上!

相关文章

网友评论

      本文标题:springboot 2.0开启事务

      本文链接:https://www.haomeiwen.com/subject/hccjmctx.html