Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- springdatajpa
- QueryDSL
- 스프링
- Proxy
- java
- spring
- 자바
- 김영한
- Spring Boot
- http
- Android
- 스프링 핵심 기능
- transaction
- Exception
- JDBC
- 백준
- 알고리즘
- 인프런
- db
- JPQL
- pointcut
- AOP
- 그리디
- Greedy
- SpringBoot
- kotlin
- 스프링 핵심 원리
- Thymeleaf
- jpa
- Servlet
Archives
- Today
- Total
목록AutoApply (1)
개발자되기 프로젝트
@Converter
1. Converter란? entity와 DB사이에서 동작하며 말 그래도 converter의 역할을 한다. 즉 어떤 정보를 Entity에 저장하는 type과 DB에 저장하는 type다를 경우 중간에서 변환하는 기능을 제공한다. 2. 준비 책의 상태를 추가해보자. DB에는 int(코드)로 status를 저장하고 entity는 boolean타입으로 관리한다고 해보자. 예를들어 DB에 어떤 책의 status가 200이라고 하면, 이는 현재 미판매(전시)되어있고 isDisplayed()는 true를 반환한다. private int status; //판매상태 public boolean isDisplayed(){ return status == 200; } insert into book(id, name, publis..
JPA/Custom Query
2021. 7. 10. 17:46