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
- Java
- Design Pattern
- 알고리즘
- 이니셔티브 q
- 디자인패턴
- 논블록
- Meta Quest3
- SOLID
- 10505
- 삼성 SW 역량 테스트 기출 문제
- 11060
- 자료구조
- BOJ
- 백준
- 어싱크
- 리퍼럴
- 프로그래머스
- spring
- 메타퀘스트3
- 레퍼럴
- C++
- 점프 점프
- SWEA
- level2
- D2
- D3
- d4
- 블록
- 재밌게 할래요
- Initiative Q
Archives
- Today
- Total
아직은 정체성이 없는 블로그
[Spring][Java] DAO (Data Access Object) 본문
DAO 란?
- Data Access Object의 약어로서 DB를 사용해 데이터를 조회하거나 조작하는 기능을 전담하도록 만든 오브젝트를 말한다.
DAO의 클래스 예제
public class UserDao {
public void add(User user) throws ClassNotFoundException, SQLException{
Class.forName("com.mysql.jdbc.Driver");
Connection c= DriverManager.getConnection(
"jdbc:mysql://localhost/springbook", "spring", "book");
PreparedStatement ps = c.prepareStatement(
"insert into users(id,name,password) value(?,?,?)");
ps.setString(1, user.getName());
ps.setInt(2, user.getValue());
ps.setString(3, user.getPassword());
ps.executeUpdate();
ps.close();
c.close();
}
}
'Spring' 카테고리의 다른 글
[Spring] @Controller와 @RestController의 차이 (0) | 2020.07.20 |
---|---|
[Spring][Spring boot] @SpringBootApplication 이란? (0) | 2020.07.09 |
[Spring][IoC] IoC(Inversion of Control) 제어의 역전 (0) | 2020.06.12 |
[Spring] Spring boot 프로젝트의 구조 (0) | 2020.06.12 |
Comments