Spring Model2 프로젝트를 생성한 후- mybatis 및 jdbc에 대한 라이브러리가 추가되어 있다고 했을 때 1. pom.xml 파일에 라이브러리 추가(Postgresql) 123456 org.postgresql postgresql 42.2.0 cs 2. root-context.xml 파일에 datasource 빈 추가 123456 Colored by Color Scriptercs - property 태그에 value로 driver, url ( postgresql db가 존재하는 ip:포트번호/계정), 계정, 계정비밀번호의 값을 정의한다. 3. 오라클 DB를 사용했을 때 처럼 sessionfactory로 지정한 쿼리를 담은 xml 경로에 xml 파일을 생성하고 여느때처럼 쿼리를 날리면 된다!!