Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- cors
- JPA
- rest api
- AuthenticationPrincipal
- @ConfigurationProperties
- webjar
- 리소스핸들러
- 브루트포스
- 리소스 서버
- Application Runner
- 스프링부트
- 백트래킹
- 백준
- HttpMessageConverters
- Application Event
- 외부설정
- OAuth2
- 알고리즘
- 백기선
- Application Argument
- EnableAutoConfiguration
- 스프링 부트
- application.properties
- WebApplication Type
- 다익스트라
- 정적 리소스
- Spring Security
- JsonSerializer
- HATEOAS
- @Profile
Archives
- Today
- Total
아카이브
[스프링 데이터 JPA] 스프링 데이터 Common 2. 인터페이스 정의하기 본문
Repository marker Interface를 이용하여 메서드를 직접 정의하여 사용하는 것
- JpaRepository에서 들어오는 기능들이 싫고 직접 정의해서 사용하고 싶다면.
공통 인터페이스 정의
/**
* Custom Repositry Define.
* */
@NoRepositoryBean
public interface MyRepository<T, Id extends Serializable> extends Repository<T, Id> {
<E extends T> E save(E entity);
List<T> findAll();
long count();
}
공통 인터페이스를 extend 하고 사용할 수 있다
public interface CommentRepository extends MyRepository<Comment, Long>{
}
공통 인터페이스를 상속한 CommentRepository 테스트
@DataJpaTest
class CommentRepositoryTest {
@Autowired
CommentRepository commentRepository;
@Test
public void crudRepositoryTest() {
//When
Comment comment = new Comment();
comment.setComment("Hello Comment");
commentRepository.save(comment);
//Then
List<Comment> all = commentRepository.findAll();
assertThat(all.size()).isEqualTo(1);
//When
long count = commentRepository.count();
//Then
assertThat(count).isEqualTo(1);
}
}
'Spring > 스프링 데이터 JPA' 카테고리의 다른 글
[스프링 데이터 JPA] 스프링 데이터 Common 4. 쿼리 만드는 방법 및 실습 (0) | 2021.01.16 |
---|---|
[스프링 데이터 JPA] 스프링 데이터 Common 3. Null 처리하기 (0) | 2021.01.16 |
[스프링 데이터 JPA] 스프링 데이터 Common 1.레포지토리 (테스트) (0) | 2021.01.16 |
[스프링 데이터 JPA] 스프링 데이터 JPA 소개 및 원리 (0) | 2021.01.10 |
[스프링 데이터 JPA] JPA 프로그래밍 7: Query (0) | 2021.01.10 |