休眠无法加载实体错误
|
我刚开始在一个新项目上使用Hibernate,并且在我的第一个实体中出现了一个错误,似乎无法弄清。
我现在的模式只有两个表,大洲和国家(地区),其中国家/地区具有大洲外键。
当我尝试运行调用大洲实体的代码时,出现空白页。所有处理都将停止,但不会显示任何错误。当我通过MXUnit运行代码时,实际上收到一个错误。错误消息只是“ 0”。发生异常的原因是“ 1”。这就是我所得到的。
我的实际实体代码是:
Continent.cfc
component tablename=\'continents\' persistent=true output=false{
property name=\'id\' type=\'numeric\' fieldtype=\'id\' datatype=\'integer\';
property name=\"name\" type=\'string\' length=\'45\';
property name=\'bonus\' type=\'numeric\';
property name=\'countries\' type=\'array\' fieldtype=\'one-to-many\' cfc=\'Country\' singularname=\'country\' inverse=\'true\' fkcolumn=\'continentid\' cascade=\'all-delete-orphan\';
public Country function init(string name=\'\', numeric bonus=0){
setName(Arguments.name);
return this;
}
}
Country.cfc
component tablename=\'countries\' persistent=true output=false{
property name=\'id\' type=\'numeric\' fieldtype=\'id\' datatype=\'integer\' generator=\"identity\";
property name=\"name\" type=\'string\' length=\'45\';
property name=\'continent\' fieldtype=\'many-to-one\' fkcolumn=\'continentid\' cfc=\'Continent\' missingRowIgnored=true;
public Country function init(string name=\'\'){
setName(Arguments.name);
return this;
}
}
以及调用该方法的代码。它在ColdSpring bean中
ContinentBean.cfc
component {
property name=\"continent\" type=\"any\";
public any function init(any continent=\'\'){
if(len(Arguments.continent))setContinent(Arguments.continent);
return this;
}
public any function getContinent(){
return continent;
}
public void function setContinent(numeric continent){
continent = EntityLoad(\'Continent\', Arguments.continent, true);
}
public void function setMapService(mapService){variables.instance[\'mapService\'] = Arguments.mapService;}
public any function getMapService(){return variables.instance[\'mapService\'];}
}
我找不到真正可以理解的有关错误消息的任何信息,因此这可能只是语法无效。
没有找到相关结果
已邀请:
5 个回复
苦诫
Country.cfc
稳赣苍卯改
布埃郝卞簿
擅香
。通常我将它与datetime一起使用:
我必须指定
,因为
还不够。
荤碗
对此: