springboot注解使用

编程

配置事务

	方法加上注解 @Transactional

异步处理

	1、方法上加上注解    @Async

2、启动类加上注解 @EnableAsync

缓存Cach

	启动类加上注解 @EnableCaching

方法上面加注解

@Cacheable(cacheNames = "menuLeftlist",unless="#result == null") //保存缓存

@CacheEvict(cacheNames = "menuLeftlist",allEntries = true) //清除缓存

@CachePut(cacheNames="accountCache",key="#p0.id") //更新缓存

定时任务

	启动类加上注解 @EnableScheduling

方法上加注解 @Scheduled(cron = "0/5 * * * * ?") //每5秒执行一次

以上是 springboot注解使用 的全部内容, 来源链接: utcz.com/z/517730.html

回到顶部