我使用Derby数据库和Hibernate将表列拉入Java类字段。在为一个名为CourseCredits.class
的类提取数据时,我得到一个MappingException。这是因为名称为 Course 的列的类型为VARCHAR(30)
,而相应的类字段的类型为Course.class
:
@Entity
@Table(name="CourseCredits")
public class CourseCredit implements Serializable {
@Id
@Column(name="Course")
private Course course;
public CourseCredit(){
}
// getters and setters
}
如果我将全局变量course
更改为String类型,则程序按预期工作:
@Entity
@Table(name="CourseCredits")
public class CourseCredit implements Serializable {
@Id
@Column(name="Course")
private String course;
...
}
鉴于班级Course.class
看起来像这样:
public class Course {
private String name;
...
}
是否可以将课程列中的String存储到Course.class
的实例中,特别是全局变量name
?
根据Bartosz的建议,课程现在看起来像这样:
@Entity
@Table(name="CourseCredits")
public class CourseCredit implements Serializable {
@Id
@OneToOne
@JoinColumn(name = "CourseId")
private Course course;
...
}
@Entity
public class Course implements Serializable{
@Id
@Column(name="CourseId")
private String name;
...
}
我从Course.class
创建了一个实体,因为关联映射指定了实体之间的关系。不幸的是,错误尚未解决。现在我收到错误ERROR 42X04
。这就是我的目的:
em.getTransaction().begin(); // em is the entity manager
List<CourseCredit> credits = this.em.createQuery("from CourseCredit").getResultList();
问题不在于此执行代码,因为如果我使用String类型的字段而不是Course
,程序可以正常工作。我得到的错误输出是:
Caused by: java.sql.SQLSyntaxErrorException: Column 'COURSECRED0_.COURSEID' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE statement then 'COURSECRED0_.COURSEID' is not a column in the target table.
at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(Unknown Source)
at org.apache.derby.impl.jdbc.Util.generateCsSQLException(Unknown Source)
at org.apache.derby.impl.jdbc.TransactionResourceImpl.wrapInSQLException(Unknown Source)
at org.apache.derby.impl.jdbc.TransactionResourceImpl.handleException(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedConnection.handleException(Unknown Source)
at org.apache.derby.impl.jdbc.ConnectionChild.handleException(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedPreparedStatement.<init>(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedPreparedStatement42.<init>(Unknown Source)
at org.apache.derby.jdbc.Driver42.newEmbedPreparedStatement(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedConnection.prepareStatement(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedConnection.prepareStatement(Unknown Source)
at org.hibernate.engine.jdbc.internal.StatementPreparerImpl$5.doPrepare(StatementPreparerImpl.java:146)
at org.hibernate.engine.jdbc.internal.StatementPreparerImpl$StatementPreparationTemplate.prepareStatement(StatementPreparerImpl.java:172)
... 19 more
似乎抱怨一个不存在的列(CourseId
),这是真的。我根本不了解数据库,所以请原谅我这是一个新手问题,但CourseId
中名称@JoinColumn
的重要性是什么?它似乎表示一个新的列名称。我看到它在我能找到的每个例子中都使用过,但是在定义之后它永远不会被引用。
答案 0 :(得分:2)
使用关联。
您需要决定基数(一对一?多对多?)
假设你需要一对一和你的情况
@OneToOne
@JoinColumn(name = "course_id")
private Course course;
使用关联时,必须存在链接表(在您的情况下为诅咒)。您可以手动创建它或从Hibernate注释生成数据库模式。
Hibernate文档包含所有案例的示例。文档包括基础表结构。
有关详情,请参阅http://docs.jboss.org/hibernate/orm/5.2/userguide/html_single/Hibernate_User_Guide.html#associations