hibernate.cfg.xml by 小郭童靴,耻辱啊!耻辱啊!!耻辱啊!!!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hibernate.cfg.xml by 小郭童靴,耻辱啊!耻辱啊!!耻辱啊!!!相关的知识,希望对你有一定的参考价值。
<?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="connection.driver_class"> oracle.jdbc.OracleDriver </property> <property name="connection.url"> jbdc:oracle:thin:@localhost:1521:orcl </property> <property name="connection.username"> scott </property> <property name="connection.password"> 123 </property> <property name="dialect"> org.hibernate.dialect.Oracle10gDialect </property> <property name="show_sql">true </property> <property name="format_sql">true </property> <property name="hbm2ddl.auto">update </property> <!--和当前线程绑定 --> <property name="current_session_context_class">thread </property> <!-- 启用二级缓存 <property name="cache.use_second_level_cache">true</property> <!– 配置使用的二级缓存的工厂 –> <property name="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory </property> <!– 配置启用查询缓存 –> <property name="cache.use_query_cache">true</property>--> // 哈哈 class <mapping class="entity.MembersInfo"/> </session-factory> </hibernate-configuration>
错误1.
<?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">
第一行没写在第一行 第二行注释没写
错误2.
<property name="connection.url">
jbdc:oracle:thin:@localhost:1521:orcl
</property>
jbdc>jdbc localhost>192.168.15.10
错误3.
// 哈哈 class
<mapping class="entity.MembersInfo"/>
xml 文件,你竟然用 // 注释,也没谁了
以上是关于hibernate.cfg.xml by 小郭童靴,耻辱啊!耻辱啊!!耻辱啊!!!的主要内容,如果未能解决你的问题,请参考以下文章
hibernate--hibernate.cfg.xml常用配置详解
如何使用 hibernate.properties 文件而不是 hibernate.cfg.xml