在Spring Boot中,關(guān)閉JPA緩存的方法可以通過設(shè)置spring.jpa.properties.hibernate.cache.use_second_level_cache
屬性為false
來實(shí)現(xiàn)??梢栽赼pplication.properties文件中添加以下配置:
spring.jpa.properties.hibernate.cache.use_second_level_cache=false
這將禁用JPA的二級緩存。請注意,在某些情況下,您可能還需要禁用一級緩存。可以通過設(shè)置spring.jpa.properties.hibernate.cache.use_query_cache
屬性為false
來實(shí)現(xiàn):
spring.jpa.properties.hibernate.cache.use_query_cache=false
完成以上配置后,JPA緩存將會被關(guān)閉。