myeclipse中hibernate连接SQL2005报错--对象名"xx.xxx"无效。

Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: 对象名  'dboa.employeerole' 无效。

原因 少了个dbo,因为是 dboa是我项目中的数据库名称,所以需要在 对应 文件名.hbm.xml中

不仅要加数据库名catalog="dboa",还要加模式(架构)名schema="dbo"。

<hibernate-mapping>
    <class name="com.hibernate.pojo.Employeerole" table="employeerole" catalog="dboa" lazy="false"schema="dbo">//此处为添加之后,ok了
        <composite-id name="id" class="com.hibernate.pojo.EmployeeroleId">


太他妈痛苦了,纠结了一个下午。。

你可能感兴趣的:(myeclipse中hibernate连接SQL2005报错--对象名"xx.xxx"无效。)