SpringBoot 注解@Slf4j @ComponentScan @Transactional .@EnableTransactionManagement .@Signature

1.@Slf4j相当于private  final Logger logger = LoggerFactory.getLogger(当前类名.class); 
  @Sl4j注解,然后使用log打印日志;
2.@ComponentScan用于类或接口上主要是指定扫描路径,spring会把指定路径下带有指定注解的类自动装配到bean容器里。
会被自动装配的注解包括@Controller、@Service、@Component、@Repository等等.
3.@Transactional(rollbackFor=Exception.class),如果类加了这个注解,那么这个类里面的方法抛出异常,就会回滚,数据库里面的数据也会回滚。
4.spring boot 开发restful API时,使用@GetMapping("/getAll/{arg}")方式写请求路径
  然后使用@PathVariable 获取arg的值.

5.@EnableTransactionManagement // 启注解事务管理,等同于xml配置方式的 <tx:annotation-driven />
6.@Signature(type = Executor.class, method = "update", args = {MappedStatement.class, Object.class})
  mybatis拦截器的注解说明:
  type:表示拦截的类,这里是Executor的实现类; 
  method:表示拦截的方法,这里是拦截Executor的query方法
  args:表示方法参数
7.ModelAndView
  当你只有一个模型属性要返回时,可以在构造器中指定该属性来构造ModelAndView对象

上一篇:@Transactional 事务提交之后执行 @Async 修饰的方法


下一篇:想自学Java的速来!软件工程师和java工程师的区别