mapper
-
02-2. ORM : MyBatis 연동하기 (Mapper, Configration ) [Spring]Spring 2016. 11. 2. 09:52
Mapper 설정src/main/java -> dao -> impl -> sql 에 indexDao.xml 이름으로 file 생성 //namaspace -> 파일명 SELECT/* [indexDao.xml] [getNowDateTime] */SYSDATEFROM DUAL IndexDaoImpl에 있는public String getNowDateTime() {return getSqlSession().selectOne("indexDao.getNowDateTime");} // indexDao은 namespace getNowDateTime 은 select id이다 Configration 생성src/main/resource -> mybatis.xml 이름으로 file 생성 Configration 설정 rootCon..