JPA를 사용하는 이유
참고 : https://gmlwjd9405.github.io/2019/08/03/reason-why-use-jpa.html
[JPA] JPA를 사용하는 이유 - Heee's Development Blog
Step by step goes a long way.
gmlwjd9405.github.io
JPA공식 Reference 홈페이지
참고 : https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#jpa.query-methods
Spring Data JPA - Reference Documentation
Example 109. Using @Transactional at query methods @Transactional(readOnly = true) interface UserRepository extends JpaRepository { List findByLastname(String lastname); @Modifying @Transactional @Query("delete from User u where u.active = false") void del
docs.spring.io
'웹 기술 쌈싸먹기 > Spring' 카테고리의 다른 글
[Spring / JPA] DAO, DTO, Entity, VO란? (0) | 2022.01.24 |
---|---|
[JPA] 엔티티 매핑 @어노테이션 정리/예제 (0) | 2022.01.23 |
[Spring] DI(의존성 주입) 란? (0) | 2022.01.22 |
[Spring / MySQL] Error_MYSQL 연결 : 공개키 검색이 허용되지 않습니다. (0) | 2022.01.22 |
[Spring / spring.io/ IntelliJ] start.spring.io를 이용한 스프링부트 프로젝트 생성 및 IntelliJ 기본세팅 (0) | 2022.01.21 |