很诡异的hibernate

 天调试程序遇见很诡异的hibernate

具体代码如下

public TProductPool getFkWorkShop(String fkID){
   try {
    String queryString = "from TProductPool as model where model.fkWorkshopWorkid="+fkID;
    Query queryObject = getSession().createQuery(queryString);
    TProductPool t=(TProductPool)queryObject.list().get(0);
    return t;   
   } catch (RuntimeException re) {
    log.error("find by property name failed", re);
    re.printStackTrace();
    throw re;
   }
}


就是死活return不出去,,,, 郁闷的要死

不知道是我RP不好 还是程序故意跟我做对。。 第二天一大早 程序自己好了。


你可能感兴趣的:(很诡异的hibernate)