Interface UIJsonInfoRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<UIJsonInfo,String>, org.springframework.data.repository.ListCrudRepository<UIJsonInfo,String>, org.springframework.data.repository.ListPagingAndSortingRepository<UIJsonInfo,String>, org.springframework.data.mongodb.repository.MongoRepository<UIJsonInfo,String>, org.springframework.data.repository.PagingAndSortingRepository<UIJsonInfo,String>, org.springframework.data.repository.query.QueryByExampleExecutor<UIJsonInfo>, org.springframework.data.repository.Repository<UIJsonInfo,String>

@CacheConfig(cacheNames="cache_apps_services") public interface UIJsonInfoRepository extends org.springframework.data.mongodb.repository.MongoRepository<UIJsonInfo,String>
  • Method Summary

    Modifier and Type
    Method
    Description
    findByAppIdAndAppVersion(String paramString, String appVersion)
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.mongodb.repository.MongoRepository

    findAll, findAll, insert, insert

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findByAppIdAndAppVersion

      @Query("{ appId: ?0 , appVersion : ?1}") List<UIJsonInfo> findByAppIdAndAppVersion(String paramString, String appVersion)