2018年3月27日

事务的控制和@Transactional注解

摘要: 启动类添加注解,必须添加 @EnableTransactionManagement // 使用boot开启事务控制 业务逻辑层@service之后添加@Transantional 注意这个注解只能加在类之前或public方法之前,只有在controller或其他需要调用service中的方法的地方才 阅读全文

posted @ 2018-03-27 11:37 金币 阅读(222) 评论(0) 推荐(0) 编辑

关于使用springboot内置tomcat无法正常访问jsp

摘要: <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> <scope>provided</scope> </dependency> 在pom.xml文件中 阅读全文

posted @ 2018-03-27 10:48 金币 阅读(347) 评论(0) 推荐(0) 编辑

导航