首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

hibernate 多对1关联配置有关问题

2012-11-06 
hibernate 多对1关联配置问题一张信息表 一张地址类(AreaCode) 信息类(TroubleshootCallLog)private Long

hibernate 多对1关联配置问题
一张信息表 一张地址类(AreaCode) 信息类(TroubleshootCallLog)
  private Long id;
private string comt;
  private int areaID;
  private AreaCode areaCode;
地址表
private int areaID;
private String areaName;
信息表
  <property name="areaID" type="java.lang.Integer">
  <column name="AREA_OCA" precision="22" scale="0" />
  </property>
配置 <many-to-one name="areaCode" column="areaID" class="fs.model.AreaCode" cascade="all"/>  

查询语句 from TroubleshootCallLog tc where 1=1  
报错
ORA-00904: "TROUBLESHO0_"."AREAID": ?????

我是不是哪里配置错误了

[解决办法]
好像不需要

热点排行