Java 类org.springframework.data.jpa.repository.EntityGraph 实例源码

项目:xm-uaa    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:xm-uaa    文件:UserRepository.java   
@EntityGraph(attributePaths = "logins")
Optional<User> findOneWithLoginsByUserKey(String userKey);
项目:xm-uaa    文件:UserRepository.java   
@EntityGraph(attributePaths = {"logins", "authorities"})
Optional<User> findOneWithAuthoritiesAndLoginsByUserKey(String userKey);
项目:xm-uaa    文件:UserRepository.java   
@Override
@EntityGraph(attributePaths = {"logins", "authorities"})
Page<User> findAll(Pageable pageable);
项目:jhipster-microservices-example    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:jhipster-microservices-example    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:MTC_Labrat    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:MTC_Labrat    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:Armory    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:Armory    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:loafer    文件:PostRepository.java   
@EntityGraph(attributePaths = {"tags"})
Optional<Post> findPostById(Long id);
项目:patient-portal    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:patient-portal    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:SpringBootDemoApp    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:SpringBootDemoApp    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:TorgCRM-Server    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesById(Long id);
项目:TorgCRM-Server    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
@Cacheable(cacheNames = USERS_BY_LOGIN_CACHE)
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:TorgCRM-Server    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
@Cacheable(cacheNames = USERS_BY_EMAIL_CACHE)
Optional<User> findOneWithAuthoritiesByEmail(String email);
项目:speakTogether    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:speakTogether    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:xm-ms-entity    文件:XmEntityRepository.java   
@EntityGraph(value = "xmEntityGraph", type = EntityGraph.EntityGraphType.LOAD)
XmEntity findOneById(Long id);
项目:Code4Health-Platform    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:Code4Health-Platform    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:spring-io    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:spring-io    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:spring-io    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:spring-io    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:devoxxus-jhipster-microservices-demo    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:devoxxus-jhipster-microservices-demo    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:codemotion-2017-taller-de-jhipster    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:codemotion-2017-taller-de-jhipster    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
@Cacheable(cacheNames="users")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:qualitoast    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesById(Long id);
项目:qualitoast    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
@Cacheable(cacheNames = "users")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:Microservices-with-JHipster-and-Spring-Boot    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
User findOneWithAuthoritiesById(Long id);
项目:Microservices-with-JHipster-and-Spring-Boot    文件:UserRepository.java   
@EntityGraph(attributePaths = "authorities")
Optional<User> findOneWithAuthoritiesByLogin(String login);
项目:ugc-bot-redux    文件:LegacyPublisherRepository.java   
@EntityGraph(value = "Publisher.full", type = EntityGraphType.LOAD)
Optional<Publisher> findByName(String name);
项目:ugc-bot-redux    文件:LegacyGameServerRepository.java   
@EntityGraph(value = "GameServer.detail", type = EntityGraphType.LOAD)
Optional<GameServer> findByAddress(String address);
项目:ugc-bot-redux    文件:LegacyGameServerRepository.java   
@EntityGraph(value = "GameServer.detail", type = EntityGraphType.LOAD)
Optional<GameServer> findByAddressStartingWith(String address);
项目:xroad-catalog    文件:MemberRepository.java   
@EntityGraph(value = "member.full-tree.graph",
        type = EntityGraph.EntityGraphType.FETCH)
Set<Member> findAll();
项目:xroad-catalog    文件:MemberRepository.java   
@EntityGraph(value = "member.full-tree.graph",
        type = EntityGraph.EntityGraphType.FETCH)
@Query("SELECT m FROM Member m WHERE m.statusInfo.removed IS NULL")
Set<Member> findAllActive();