2022/JPA입문(完)

@Querydsl - JPQL을 코드를 작성할 수 있도록 도와주는 빌더 API - 소스코드로 SQL문을 문장려이 아닌 코드로 작성하기 때문에 컴파일러의 도움을 받을 수 있다. - 소스 작성 시 오타가 발생하면 개발자엑 ㅔ오타가 있음을 바로 알려준다. 또한 동적으로 쿼리를 생성해주는 큰 장점이 있다. 스프링 부트 2.6.2 은 querydsl 버전 5.0.0 적용 pom.xml 안에서의 dependency 와 plugins 를 추가한다. 4.0.0 org.springframework.boot spring-boot-starter-parent 2.6.2 com shop 0.0.1-SNAPSHOT shop shop 11 5.0.0 ... com.querydsl querydsl-apt ${querydsl.vers..
- 쿼리 메소드를 이용할 때 가장 많이 사용하는 문법 : find find + (엔티티 이름) + By + 변수 결과) Hibernate: select item0_.item_id as item_id1_0_, item0_.item_detail as item_det2_0_, item0_.item_nm as item_nm3_0_, item0_.item_sell_status as item_sel4_0_, item0_.price as price5_0_, item0_.reg_time as reg_time6_0_, item0_.stock_number as stock_nu7_0_, item0_.update_time as update_t8_0_ from item item0_ where item0_.item_nm=? 20..
1) 프로젝트 만들기 application.properties server.port=80 spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/shop?serverTimezone=UTC spring.datasource.username=root spring.datasource.password=root spring.jpa.properties.hibernate.show_sql=true #콘솔창에 출력되는 쿼리를 가독성 좋게 포맷팅 spring.jpa.properties.hibernate.format_sql=true #쿼리에 물음표로 출력되는 바인드 파라미터 출력 loggi..
1) MYSQL MySQL :: Download MySQL Installer Maven – Welcome to Apache Maven Welcome to Apache Maven Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. If you maven.apache.org 2) JDK Java Downloads | Oracle 3) MAVEN Maven – We..
AKI
'2022/JPA입문(完)' 카테고리의 글 목록 (4 Page)