今天遇到一个比较奇怪的问题就是表明明就存在,却总是抛出异常说表不存在,其异常代码如下:
Caused by: org.hibernate.AnnotationException: Cannot find the expected secondary table: no bio_experiment_protocol available for com.founder.cims.bio.model.Protocol
at org.hibernate.cfg.Ejb3Column.getJoin(Ejb3Column.java:293)
at org.hibernate.cfg.Ejb3Column.getTable(Ejb3Column.java:272)
at org.hibernate.cfg.AnnotationBinder.bindManyToOne(AnnotationBinder.java:1946)
at org.hibernate.cfg.AnnotationBinder.processElementAnnotations(AnnotationBinder.java:1368)
at org.hibernate.cfg.AnnotationBinder.bindClass(AnnotationBinder.java:754)
at org.hibernate.cfg.AnnotationConfiguration.processArtifactsOfType(AnnotationConfiguration.java:534)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:286)
at org.hibernate.cfg.Configuration.buildMappings(Configuration.java:1148)
at org.springframework.orm.hibernate3.LocalSessionFactoryBean.buildSessionFactory(LocalSessionFactoryBean.java:673)
at org.springframework.orm.hibernate3.AbstractSessionFactoryBean.afterPropertiesSet(AbstractSessionFactoryBean.java:211)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1369)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1335)
... 59 more
在项目中我用的一对多的双向关联,并且用的是中间表来进行两个表关联的。其关联关系如下:
@Entity
@Table(name = "BIO_NOTEBOOK")
@SequenceGenerator(name = "BIO_NOTEBOOK_SQ", sequenceName = "BIO_NOTEBOOK_SQ",
allocationSize = 1, initialValue = 1)
public class Notebook implements Serializable{
private static final long serialVersionUID = 7346303079987267177L;
private Integer id;
private String name;
private String description;
private int staus;
private String author;
private Experiment experiment;
@ManyToOne(fetch = FetchType.LAZY, targetEntity = Experiment.class)
@JoinTable(name = "BIO_EXPERIMENT_NOTEBOOK",
joinColumns = {@JoinColumn(name = "NOTEBOOK_ID")},
inverseJoinColumns = {@JoinColumn(name = "EXPERIMENT_ID")}
)
public Experiment getExperiment() {
return experiment;
}
public void setExperiment(Experiment experiment) {
this.experiment = experiment;
}
一对多的那端
@Entity
@Table(name = "BIO_EXPERIMENT")
@SequenceGenerator(name = "BIO_EXPERIMENT_SQ", sequenceName = "BIO_EXPERIMENT_SQ", allocationSize = 1, initialValue = 1)
public class Experiment implements Serializable{
private static final long serialVersionUID = 1315584437277200383L;
private Integer id;
private Study study;
private String type;
private Integer status;
private InVivoExperiment invivoExperiment;
private InVitroExperiment invitroExperiment;
private DmpkExperiment dmpkExperiment;
private Set<Notebook> notebooks;
@OneToMany(mappedBy = "experiment")
public Set<Notebook> getNotebooks() {
return notebooks;
}
public void setNotebooks(Set<Notebook> notebooks) {
this.notebooks = notebooks;
}
当我把注解写到变量声明的上面就正确了即:
@Entity
@Table(name = "BIO_NOTEBOOK")
@SequenceGenerator(name = "BIO_NOTEBOOK_SQ", sequenceName = "BIO_NOTEBOOK_SQ",
allocationSize = 1, initialValue = 1)
public class Notebook implements Serializable{
private static final long serialVersionUID = 7346303079987267177L;
private Integer id;
private String name;
private String description;
private int staus;
private String author;
@ManyToOne(fetch = FetchType.LAZY, targetEntity = Experiment.class)
@JoinTable(name = "BIO_EXPERIMENT_NOTEBOOK",
joinColumns = {@JoinColumn(name = "NOTEBOOK_ID")},
inverseJoinColumns = {@JoinColumn(name = "EXPERIMENT_ID")}
)
private Experiment experiment;
public Experiment getExperiment() {
return experiment;
}
public void setExperiment(Experiment experiment) {
this.experiment = experiment;
}
目前我也不知道是什么原因,有哪位知道的话可以给留言呀,期待中,谢谢!
分享到:
相关推荐
微软Excel文件格式是电子表格软件Microsoft Excel使用的数据存储格式,其版本涵盖了从Excel 2.0到Excel 2003的多个版本。这一文件格式详细描述了Excel文档的基本结构,包括工作簿(Workbook)和工作表(Worksheet)...
cannot load library 'libcairo.so.2': libcairo.so.2: cannot open shared object file: No such file or directory cannot load library 'libcairo.2.dylib': libcairo.2.dylib: cannot open shared object file: ...
1. **“statement expected but procedure found”**:这个错误提示表明在编译器尝试找到一个语句的地方,它却找到了一个过程(Procedure)的定义。这通常意味着你在某个过程或函数的定义中忘记了关闭的`end`关键字...
在使用Shell脚本编程时,有时我们可能会遇到一个常见的错误提示:“[: =: unary operator expected”。这个错误通常出现在我们尝试进行条件判断时,尤其是当我们在`if`语句中使用`[ ... ]`或者`[[ ... ]]`进行比较...
std::optional和std::expected都是 C++ 中非常有用的类型,它们在处理可能不存在的值以及错误情况时提供了更优雅和安全的方式。std::optional侧重于值的存在性,而std::expected侧重于错误信息的传递和处理。在实际...
NULL 博文链接:https://bnmnba.iteye.com/blog/2322332
window编译HTK3.4时会报错:htk_htklib_nt.mkf(6):fatalerrorU1035:syntaxerror:expected‘:’or‘=’separatorStop.这主要是由于这个文件格式编码的问题,只需下载然后替换相应的mkf文件,重新编译即可。目前发现HTK...
shell脚本报错:”[: =: unary operator expected”解决办法 在匹配字符串相等时,我用了类似这样的语句: if [ $STATUS == OK ]; then echo OK fi 在运行时出现了 [: =: unary operator expected 的错误,就...
calico集群模式下的yaml配置。sed -i "s#192\.168\.0\.0/16#${POD_SUBNET}#" calico.yaml
DBus是Linux系统中一个用于进程间通信(IPC)的框架,它允许应用程序之间发送和接收消息。DBus C API是直接与DBus协议交互的底层接口,适用于需要深度控制和高效编程的场景。在这个“DBus_C_API_Lowlevel”压缩包中...
"线上问题分析:The target server failed to respond(目标服务器返回失败)" 知识点总结 在本文中,我们将分析一个常见的线上问题,即目标服务器返回失败(The target server failed to respond)。我们将从多个...
Codewarrior是一款由Metrowerks公司开发的集成开发环境,主要针对Motorola/Freescale的微处理器进行软件开发。文档《单片机技术初步实践》提供了有关Codewarrior在编译过程中可能遇到的C语言语法错误及其解决方法。...
#### SVN服务配置错误:`svnserve.conf:12: Option expected` 在管理Subversion服务器时,你可能会遇到`svnserve.conf:12: Option expected`这样的错误信息。这通常发生在解析`svnserve.conf`配置文件时,系统期待...
http-error-parse 给定错误堆栈对象,获取一条消息和/或关联的HTTP响应代码(404、400、401等) 我创建它是为了与 express.js 一起使用,但它应该能够处理不同类型的错误,并智能地返回 HTTP 响应代码和简单的字符串...
Nordic SDK16.0.0使用中遇到的问题,8.27.0 Pack问题,编译找不到nrf_erratas.h问题
Cannot read or write variables of this type (error64):** - **含义:** 无法读写该类型的变量。 - **解决方法:** 确保变量类型是可读写的。 **63. Pointer variable expected (error65):** - **含义:** 期望...
- schema_reference.4: Failed to read schema document 'http://code.alibabatech.com/schema/dubbo/dubbo.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root ...
imagem end for website dom pelo minoxidil