JPA(Java Persistence API)


JPA(Java Persistence API)

JPA 자바 진영에서 ORM 기술 표준으로 사용되는 인터페이스의 모음 JPA를 구현한 대표적인 오픈소스는 Hibernate 출처 - 구글 검색 ORM Object-Relational Mapping 자바의 객체와 관계형 DB를 매핑 SQL문이 아닌 Method를 통해 DB를 조작 JPA 예제 @APPLICATION.YML jpa: open-in-view: false hibernate: ddl-auto: create-drop properties: hibernate: show_sql: true format_sql: true use_sql_comments: true dialect: org.hibernate.dialect.H2Dialect @SERVICE public List<CoinPrice> coinPriceAllSelect() { return coinPriceRepository.findAll(); } @ENTITY public class CoinPrice { @Id @GeneratedV...


#JPA #MyBatis #ORM

원문링크 : JPA(Java Persistence API)