标签: java spring spring-boot redis
我使用spring缓存抽象在redis中缓存我的数据。 有没有办法通过application.properties文件禁用缓存。 我尝试使用spring.cache.type=none,但它没有用。
spring.cache.type=none
我知道如果删除@EnableCaching,它将禁用缓存,但是有没有其他方法可以在不更改代码的情况下执行此操作
@EnableCaching
答案 0 :(得分:1)
尝试将以下变量放在属性文件中:
rediscache=disable
希望它会有所帮助。