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
- 스프링 핵심 원리
- http
- SpringBoot
- Proxy
- spring
- 백준
- JPQL
- db
- 김영한
- java
- 인프런
- Servlet
- pointcut
- Spring Boot
- 스프링
- Greedy
- transaction
- JDBC
- springdatajpa
- Thymeleaf
- 알고리즘
- 그리디
- Exception
- AOP
- jpa
- Android
- kotlin
- 자바
- 스프링 핵심 기능
- QueryDSL
Archives
- Today
- Total
목록PreparedStatement (1)
개발자되기 프로젝트
JDBC개발-등록
JDBC를 사용해서 회원(Member)데이터를 관리하는 기능을 개발한다. Member package hello.jdbc.domain; import lombok.Data; @Data public class Member { private String memberId; private int money; public Member() { } public Member(String memberId, int money) { this.memberId = memberId; this.money = money; } } MemberRepositoryV0 - 회원 등록 Statement: SQL을 그대로 전달 PreparedStatement: Statement상속 받음, 파리미터 바인딩 가능. package hello.jdbc...
인프런/[인프런] 스프링 DB 1편 - 데이터 접근 핵심 원리
2022. 5. 23. 00:11