1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <?xml version=“1.0” encoding=“UTF-8”?> <!DOCTYPE hibernate-configuration PUBLIC “-//Hibernate/Hibernate Configuration DTD 3.0//EN” “http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd”;> <hibernate-configuration> <session-factory> <!– 配置数据库 –> <property name=“hibernate.connection.driver_class”>com.mysql.jdbc.Driver</property> <property name=“hibernate.connection.url”>jdbc:mysql://192.168.1.233:3306/shiro</property> <property name=“hibernate.connection.username”>root</property> <property name=“hibernate.connection.password”>root</property> <!– 配置方言 –> <property name=“hibernate.dialect”>org.hibernate.dialect.MySQL5Dialect</property> <!– 配置成c3p0连接池 –> <!–C3P0配置 –> <property name=“hibernate.connection.provider_class”>org.hibernate.c3p0.internal.C3P0ConnectionProvider</property> <!– 配置session上下文 –> <property name=“hibernate.current_session_context_class”>thread</property> <!– 配置自动建表显示sql –> <property name=“hibernate.hbm2bbl.auto”>update</property> <property name=“hibernate.show_sql”>true</property> <mapping resource=“com/wqc/model/student.hbm.xml”/> </session-factory> </hibernate-configuration>
|