Class | Description |
---|---|
GlueMybatisDao |
MybatisDAO.
|
dao package for MyBatis. Glue Data Access Object(DAO).
DAO class는 applicationContext.xml에 정의된다.
1. applicationContext.xml2. mybatis/mapper/{name}.xml delete from dept where deptno= #{deptno} insert into dept (DEPTNO,DNAME,LOC) values (#{deptno},#{dname},#{loc}) update dept set DNAME=#{dname}, LOC=#{loc} where deptno=#{deptno} delete from dept where deptno= #{deptno} insert into dept (DEPTNO,DNAME,LOC) values (#{deptno},#{dname},#{loc}) update dept set DNAME=#{dname}, LOC=#{loc} where deptno=#{deptno}
Copyright © 2013–2021 POSCO ICT. All rights reserved.