[spring] iBatis 구현
[spring] iBatis 구현 서비스에서 ibatis 로 변경 @Resource(name = "ibatis") private UserDAO dao; mappers 패키지 생성 ibatis 용 map file 생성 usermapper_i.xml 파일 생성생성된 코드 쿼리들을 XML 파일에 넣어야 한다. insert into userinfo (userid, username, userpwd, email, phone,address) values (?, ?, ?,?,?,?) select * from userinfo where userid=? and userpwd = ? select * from userinfo where userid = ? select * from userinfo update userinfo ..
2016. 4. 25.