들어가기 전에
이번 시간엔 실습을 통해 Spring JDBC에 대해 알아보도록 하겠습니다.
학습 목표
- DTO와 DAO에 대한 개념을 이해합니다.
- Spring JDBC를 이용해 DAO를 작성할 수 있습니다.
핵심 개념
- DTO
- DAO
- NamedParameterJdbcTemplate
학습하기
들어가기 전에
이번 시간엔 실습을 통해 Spring JDBC에 대해 알아보도록 하겠습니다.
학습 목표
핵심 개념
학습하기
실습코드
Role.java
package kr.or.connect.daoexam.dto;
public class Role {
private int roleId;
private String description;
public int getRoleId() {
return roleId;
}
public void setRoleId(int roleId) {
this.roleId = roleId;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
@Override
public String toString() {
return "Role [roleId=" + roleId + ", description=" + description + "]";
}
}
RoleDaoSqls.java
package kr.or.connect.daoexam.dao;
public class RoleDaoSqls {
public static final String SELECT_ALL = "SELECT role_id, description FROM role order by role_id";
}
RoleDao.java
package kr.or.connect.daoexam.dao;
import static kr.or.connect.daoexam.dao.RoleDaoSqls.*;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import javax.sql.DataSource;
import org.springframework.dao.EmptyResultDataAccessException;
import org.springframework.jdbc.core.BeanPropertyRowMapper;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.core.namedparam.BeanPropertySqlParameterSource;
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
import org.springframework.jdbc.core.namedparam.SqlParameterSource;
import org.springframework.jdbc.core.simple.SimpleJdbcInsert;
import org.springframework.stereotype.Repository;
import kr.or.connect.daoexam.dto.Role;
@Repository
public class RoleDao {
private NamedParameterJdbcTemplate jdbc;
private SimpleJdbcInsert insertAction;
private RowMapper<Role> rowMapper = BeanPropertyRowMapper.newInstance(Role.class);
public RoleDao(DataSource dataSource) {
this.jdbc = new NamedParameterJdbcTemplate(dataSource);
this.insertAction = new SimpleJdbcInsert(dataSource)
.withTableName("role");
}
public List<Role> selectAll(){
return jdbc.query(SELECT_ALL, Collections.emptyMap(), rowMapper);
}
}
ApplicationConfig.java 에 추가
@ComponentScan(basePackages = { "kr.or.connect.daoexam.dao" })
SelectAllTest.java
package kr.or.connect.daoexam.main;
import java.util.List;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import kr.or.connect.daoexam.config.ApplicationConfig;
import kr.or.connect.daoexam.dao.RoleDao;
import kr.or.connect.daoexam.dto.Role;
public class SelectAllTest {
public static void main(String[] args) {
ApplicationContext ac = new AnnotationConfigApplicationContext(ApplicationConfig.class);
RoleDao roleDao =ac.getBean(RoleDao.class);
List<Role> list = roleDao.selectAll();
for(Role role: list) {
System.out.println(role);
}
}
}
참고 자료
https://www.tutorialspoint.com
https://ejbvn.wordpress.com
comment
The method query(String, SqlParameterSource, ResultSetExtractor<T>) in the type NamedParameterJdbcTemplate is not applicable for the arguments (String, Map<Object,Object>, RowMapper<Role>) -- 해결방법
-- 아예 비운다.
1. return jdbc.query(RoleDaoSqls.SELECT_ALL, rowMapper);
-- Map<String, ?> 타입으로 명시해준다.
2. Map<String, ?> params = Collections.emptyMap();
return jdbc.query(RoleDaoSqls.SELECT_ALL, params, rowMapper);
-- <String, Object> 타입으로 캐스팅 : Collections.emptyMap() -> Collections.<String, Object> emptyMap()
3. return jdbc.query(RoleDaoSqls.SELECT_ALL, Collections.<String, Object> emptyMap(), rowMapper);
-- 아래 준준님께서 설명해주신 방법
4. return jdbc.query(SELECT_ALL, EmptySqlParameterSource.INSTANCE, rowMapper);
혹시
he method query(String, SqlParameterSource, ResultSetExtractor<T>) in the type NamedParameterJdbcTemplate is not applicable for the arguments (String, Map<Object,Object>, RowMapper<Role>)
에러 생기시는 분은
public List<Role> selectAll() {
return jdbc.query(SELECT_ALL, EmptySqlParameterSource.INSTANCE, rowMapper);
}
이렇게 쓰세요