如果我<query..>
在我的 Car.hbm.xml 中放入 a,那么我返回的会话(Session) HibernateUtil.getSessionFactory().getCurrentSession();
为空,如果我从我的 xml 映射文件中删除查询,则会话不再为空。为什么我会收到此错误?我真的被这种问题困住了。
我得到了这个 xml 映射:
<hibernate-mapping package="at.opendata.entitys">
<class name="Car" table="Cars">
<id name="id" column="car_Id">
<generator class="increment"/>
</id>
<set name="carDetails" table="Cardetail" cascade="all" lazy="false" fetch="select" >
<key column="car_id" not-null="true"/>
<one-to-many class="CarDetail" />
</set>
<property name="name" not-null="true"/>
<property name="vin" not-null="true"/>
</class>
<query name="dailysales">
<![CDATA[select sum(date_part('minute', age(cd.gone, cd.back))) from Car as c left join c.carDetails as cd where cd.gone is not null and cd.back is not null]]>
</query>
</hibernate-mapping>
这就是我要调用命名查询的地方:
Transaction transaction = null;
int amount = 0;
try{
Session session = (Session) HibernateUtil.getSessionFactory().getCurrentSession();
transaction = session.beginTransaction();
amount = (Integer)session.getNamedQuery("dailysales").uniqueResult();