hibernate中 org.hibernate.MappingException: invalid configuration 报错

<session-factory>
   <!-- #1:基本四项 -->
  <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/h01</property>
  <property name="hibernate.connection.username">root</property>
  <property name="hibernate.connection.password">123</property>
  <!-- #2:方言 -->
  <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
 
  <!-- #3 显示sql语句,格式化sql语句 -->
  <property name="hibernate.show_sql">true</property>
  <property name="hibernate.format_sql">true</property>
  
  <!-- 注册映射文件 -->
  <mapping resource="cn/itcast/a_hello/User.hbm.xml"/>
 
  
  <!-- 取消bean验证, javaweb6.0时才有 -->
  <property name="javax.persistence.validation.mode">none</property>
  这两行换下位置即可
  
 </session-factory>

hibernate中 org.hibernate.MappingException: invalid configuration 报错,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。