看马士兵老师hibernate的视频,用的马老师源码,但运行出错
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>
<!-- Database connection settings -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost:3306/hibernate</property>
<property name="connection.username">root</property>
<property name="connection.password">love</property>
<!-- JDBC connection pool (use the built-in) -->
<!--<property name="connection.pool_size">1</property>-->
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<!-- Enable Hibernate's automatic session context management -->
<property name="current_session_context_class">thread</property>
<!-- Disable the second-level cache -->
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<!-- Drop and re-create the database schema on startup -->
<!--<property name="hbm2ddl.auto">update</property>-->
<mapping resource="com/bjsxt/hibernate/Student.hbm.xml"/>
<mapping class="com.bjsxt.hibernate.Teacher"/>
</session-factory>
</hibernate-configuration>
分享到:
相关推荐
H2 1.4 "Lob not found" 问题 - 在 1.4.183 中修复!...org.hibernate.exception.GenericJDBCException: could not load an entity: [de.bwaldvogel.LobEntity#1] at org.hibernate.exception.SQLStateConverter.handl
nested exception is org.hibernate.exception.GenericJDBCException: could not execute statement ``` 这些错误信息表明MySQL在处理某些特殊字符(通常是中文字符)时出现了问题。 #### 原因分析 出现上述问题...
3. **JDBC驱动更新**:错误日志中提到的`org.hibernate.exception.GenericJDBCException`表明可能是JDBC驱动的问题。检查你所使用的数据库(比如MySQL)的JDBC驱动是否为最新版本,如果不是,升级到最新版本通常可以...
17. **数据插入异常,GenericJDBCException: could not insert**:确保表已创建并且已提交插入操作。 18. **LazyInitializationException**或延迟加载异常:在查询中未启用fetch,导致延迟加载失败。考虑使用`fetch...
Java错误大全涵盖了从基础异常到特定开源框架如Hibernate和Struts中可能出现的异常情况。以下是一些关键知识点的详细说明: 1. **错误类型:**Java中的错误通常分为两种主要类型,异常(Exception)和错误(Error)...
17. **数据插入异常 (GenericJDBCException: could not insert)**:检查数据库表是否存在,以及是否提交了事务。 18. **延迟加载异常 (LazyInitializationException)**:在查询中使用`fetch`来启用即时加载,避免在...
- 确认已对事务进行了提交操作,如`connection.commit()`。 ##### 7. LazyInitializationException **问题描述**:使用Hibernate框架时,当尝试访问尚未加载的延迟加载属性时,如果没有配置正确的fetch策略,则会抛...
6. GenericJDBCException:这是JDBC操作中一个通用的异常,通常是JDBC操作失败时抛出的一个异常。可能的原因包括数据库连接问题、SQL语法错误等。 7. LazyInitializationException:这个异常发生在尝试访问一个延迟...
17. **数据插入异常** (`GenericJDBCException: could not insert`): 检查是否已创建表,是否有数据,以及是否执行了提交操作。 18. **LazyInitializationException** 或**延迟加载异常**:在session关闭后尝试访问...
17. **数据插入异常,GenericJDBCException: could not insert** - **可能的原因1**:表结构未正确建立。 - **可能的原因2**:未执行提交操作。 - **解决方法**:确保数据库表结构正确建立,并在事务结束后执行...
- **示例**:`java.lang.NoClassDefFoundError: org/objectweb/asm/Type`。 - **解决方法**: - 添加ASM库到项目的依赖中。 - 确认版本兼容性。 #### 结论 以上列举了一些常见的Java错误及其处理方法。理解这些...