How to add QueryHints on Default Spring Data JPA Methods?

后端 未结 2 1899
误落风尘
误落风尘 2021-02-04 11:58

I am able to use Query Cache with Spring Data JPA for my custom query methods like below.

public interface CountryRepository extends JpaRepository

        
2条回答
  •  自闭症患者
    2021-02-04 12:28

    findAll(), findOne() etc. are not Query(s). Any caching specifications on the entity take effect in these methods.

    For example,

    @Cacheable
    @Entity
    public class User {
    
    }
    

提交回复
热议问题