首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web开发 >

hibernate有关问题。

2012-02-21 
hibernate问题。。。用hibernate生成数据类和映射文件,但是为什么在hibernate.cfg.xml里面没有映射文件地址直

hibernate问题。。。
用hibernate生成数据类和映射文件,但是为什么在hibernate.cfg.xml里面没有映射文件地址直接生成,要怎么做

[解决办法]

XML code
<hibernate-configuration>    <session-factory>        <property name="hibernate.connection.url">jdbc:mysql://localhost/hibernate_basemapping</property>        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>        <property name="hibernate.connection.username">root</property>        <property name="hibernate.connection.password">long</property>        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>        <property name="hibernate.show_sql">true</property>                <mapping resource="com/bjsxt/hibernate/User.hbm.xml"/>    </session-factory></hibernate-configuration> 

热点排行