Package net.risesoft.y9public.repository
Interface Y9logUserHostIpInfoRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<Y9logUserHostIpInfo,String>,org.springframework.data.jpa.repository.JpaRepository<Y9logUserHostIpInfo,String>,org.springframework.data.jpa.repository.JpaSpecificationExecutor<Y9logUserHostIpInfo>,org.springframework.data.repository.PagingAndSortingRepository<Y9logUserHostIpInfo,String>,org.springframework.data.repository.query.QueryByExampleExecutor<Y9logUserHostIpInfo>,org.springframework.data.repository.Repository<Y9logUserHostIpInfo,String>
@Transactional(value="rsPublicTransactionManager", readOnly=true) public interface Y9logUserHostIpInfoRepository extends org.springframework.data.jpa.repository.JpaRepository<Y9logUserHostIpInfo,String>, org.springframework.data.jpa.repository.JpaSpecificationExecutor<Y9logUserHostIpInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Y9logUserHostIpInfo>findByClientIpSection(String clientIpSection)List<Y9logUserHostIpInfo>findByUserHostIp(String userHostIp)List<Y9logUserHostIpInfo>findByUserHostIpStartingWith(String userHostIp)-
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.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor
count, exists, findAll, findAll, findAll, findOne
-
-
-
-
Method Detail
-
findByClientIpSection
List<Y9logUserHostIpInfo> findByClientIpSection(String clientIpSection)
-
findByUserHostIp
List<Y9logUserHostIpInfo> findByUserHostIp(String userHostIp)
-
findByUserHostIpStartingWith
List<Y9logUserHostIpInfo> findByUserHostIpStartingWith(String userHostIp)
-
-