我正在使用Hibernate制作这个简单的应用程序来进行一些CRUD操作。我在hibernate生成的查询中出现此错误
配置XML:
<hibernate-configuration>
<session-factory>
<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://localhost:3306/library</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">123456</property>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.format_sql">true</property>
<property name="hibernate.default_schema">library</property>
<property name="hbm2ddl.auto" value="create"/>
<!-- Mappings -->
<mapping resource="librarysystem/mappings/Role.hbm.xml"/>
<mapping resource="librarysystem/mappings/Librarian.hbm.xml"/>
<mapping resource="librarysystem/mappings/Task.hbm.xml"/>
<mapping resource="librarysystem/mappings/Library.hbm.xml"/>
</session-factory>
</hibernate-configuration>
POJO:
public class Library implements java.io.Serializable {
private int id;
private String name;
private Set librarians = new HashSet(0);
//Constructors, getters and setters...
}
映射:
<hibernate-mapping>
<class name="librarysystem.entities.Library" table="library" catalog="library" optimistic-lock="version">
<id name="id" type="int">
<column name="id" />
<generator class="assigned" />
</id>
<property name="name" type="string">
<column name="name" length="45" />
</property>
<set name="librarians" table="librarian" inverse="true" lazy="true" fetch="select">
<key>
<column name="libraryid" not-null="true" />
</key>
<one-to-many class="librarysystem.entities.Librarian" />
</set>
</class>
</hibernate-mapping>
获取列表的代码:
List<Library> libraries = session.createQuery("FROM Library").list();
当我运行查询以获取库列表时,会发生异常,说明查询语法错误
查询的日志输出是:
select
library0_.id as id1_2_,
library0_.name as name2_2_
from
library.library.library library0_
library.library.library 是如何发生的? 有什么帮助吗?
我已经给出了我认为必要的最低限度的详细信息。如果您需要更多代码来查找错误(如其他POJO和映射),请通知我
答案 0 :(得分:1)
library.library.library是如何发生的?有什么帮助吗?
我这里没有专家,但我认为这里的tripple库来自于名为库的数据库(目录)库中的名称库。
<class name="librarysystem.entities.Library" table="library" catalog="library" optimistic-lock="version">
表名和目录名相同。所以我们正在寻找一个名为库library
的目录,我们需要一个名为库library.library
的表。虽然我不是100%在第三个图书馆,但我认为我正朝着正确的方向前进。
另外,我发现使用hibernate注释而不是xml映射更容易。