Spring_FrameWork
-
2018_09_27 MyBatis 사용법Spring_FrameWork 2018. 11. 20. 16:38
blog.mybatis.org에서 다운로드 압축해제pdf에 있는2.1.1 Installation To use MyBatis you just need to include the mybatis-x.x.x.jar file in the classpath. If you are using Maven just add the following dependency to your pom.xml: org.mybatis mybatis x.x.x pom.xml에 태그 추가 mybatis-confg.xml에 good-mapping.xml에 sql문 설정하기 parameterType -> 매개변수 insert into goods values (#{code},#{name},#{price},#{maker}) update goods s..