hibernate2 [Spring] Spring + Hibernate 설정 방법 고찰? 구글링으로 Hibernate 설정법을 찾다보면 HibernateUtil이라는 class를 만들어서 사용하는 경우가 있고 아닌 경우도 있다. 1. HibernateUtil 사용 출처 : 생활코딩 - https://opentutorials.org/module/1281/8278 public class HibernateUtil { private static SessionFactory sessionFactory; private static String configFile = "hibernate.cfg.xml"; static { try { Configuration cfg = new Configuration().configure(configFile); StandardServiceRegistryBuilder sb = .. 2015. 11. 24. [Spring] Spring + Hibernate4 + MySQL 설정 Spring 프로젝트를 하나 해보는데 mybatis는 설정이 비교적 간단한 편이기도 하고 포스팅을 하진 않았지만 설정해본적도 있어서국내에서는 잘 쓰이지 않는 hibernate(하이버네이트)를 한 번 이용해보았다. 생각보다 자료가 없고 삽질을 많이해서 오래 걸렸다. 1. maven에 관련 dependency를 추가한다. org.springframework spring-orm ${org.springframework-version} commons-dbcp commons-dbcp 1.4 org.hibernate hibernate-core ${org.hibernate-version} mysql mysql-connector-java 5.1.37 Hibernate는 버전이 5.x까지 나왔는데 Jboss tool이 왠.. 2015. 11. 22. 이전 1 다음