eclipse怎么新建一个hibernate配置文件
1个回答
展开全部
首先使用eclipse工具,若想快捷创建hibernate文件的话,要下载hibernate tools
在eclipse-->help--->Install New Software里面输入网址:
http://download.jboss.org/jbosstools/updates/stable/helios/
可以自动检索到hibernate tools工具。点击下载
下面开始正题:
1、File--->new--->other--->搜索hibernate 创建hibernate.cfg.xml文件
2、填写内容
3.填写完毕内容 点击创建。
完成的配置文件:hibernate.cfg.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.NET/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">mysqladmin</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.connection.driver_class">com.MySQL.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql:///db_pb</property>
<property name="hibernate.hbm2ddl.auto">update</property>
在eclipse-->help--->Install New Software里面输入网址:
http://download.jboss.org/jbosstools/updates/stable/helios/
可以自动检索到hibernate tools工具。点击下载
下面开始正题:
1、File--->new--->other--->搜索hibernate 创建hibernate.cfg.xml文件
2、填写内容
3.填写完毕内容 点击创建。
完成的配置文件:hibernate.cfg.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.NET/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">mysqladmin</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.connection.driver_class">com.MySQL.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql:///db_pb</property>
<property name="hibernate.hbm2ddl.auto">update</property>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询