Develop/Spring40 Repository 란? Repository 는 따로 쿼리문을 작성하지 않아도 Creat : 생성 Read : 읽기 Update : 갱신 Delete : 삭제 이런 기본적인 것들을 사용할 수 있게끔 해주는 것이다. @Repository public interface UserRepository extends JpaRepository { } 다음과 같이 코드를 작성하면 Repository 를 사용할 준비를 마친 것이다. 2022. 7. 27. JPA 란? JPA ( Java Persistent Api ) 자바의 객체(Object)가 Mapping 을 통해서 관계형 데이터베이스(Relation DB)에 손쉽게 연결되고 그 DB 를 손쉽게 활용할 수 있도록 도와주는 라이브러리이다. 쿼리에 집중하기 보다는 객체에 좀 더 집중하게 해주어, 프로그래밍적으로 많이 활용된다. 2022. 7. 26. Lombok 이란? 우리는 대게 클래스를 생성하고 그 클래스 내에서 기본 생성자, 매개변수를 받는 생성자, getter & setter 메서드 등을 구현한다. public class SearchParam { private String account; private String email; private int page; // 기본생성자 public SearchParam() {} // 매개변수를 받는 생성자 public SearchParam(String account, String email, int page) { this.accont = account; this.email = email; this.page = page; } // getter&setter 메서드 public String getAccount() { return.. 2022. 7. 26. Entity 클래스와 Dto 클래스의 차이 Entity 클래스는 가장 핵심적인 클래스이다. 테이블과 매핑되는 Entity 클래스는 Request / Response 로서 사용되면 안된다. Request / Response 로는 Dto 클래스를 이용하며, 주로 Dto 클래스는 view 를 위한 클래스로 사용된다. [출처] https://jojoldu.tistory.com/251 2022. 7. 23. 이전 1 2 3 4 5 다음