HIbernate工具类
摘要:HibernateUtil.java:package com.zwh.user.util;import org.hibernate.Session;import org.hibernate.SessionFactory;import org.hibernate.cfg.Configuration;public class HibernateUtil { private static SessionFactory sessionFactory = null; static { sessionFactory = new Configuration().config...
阅读全文
Hibernate简单配置文件
摘要:hibernate.cfg.xml: com.mysql.jdbc.Driver root admin jdbc:mysql://localhost:3306/maven_user true update
阅读全文