Notice
Recent Posts
Recent Comments
Link
목록리포지터리 (1)
개발 무지렁이
[Spring Boot] 리포지터리 CRUD 메서드 테스트
리포지터리 (엔티티에 의해 생성된) 데이터베이스 테이블에 접근하는 'CRUD 메서드'들을 사용하기 위한 인터페이스를 말한다. public interface QuestionRepository extends JpaRepository { // 리포지터리로 만들기 위해 JpaRepository 인터페이스를 상속 // } Create save() @SpringBootTest class App59ApplicationTests { @Autowired // 객체 주입 private QuestionRepository questionRepository; @Test void testJpa() { Question q = new Question(); q.setSubject("안녕..
Backend/스프링부트
2022. 11. 25. 14:56