JPA Glassfish Database Update Issue

后端 未结 6 1132
半阙折子戏
半阙折子戏 2020-12-28 20:29

I have an application deployed on Glassfish v3.0.1 which reads events from a table in my database. Once ready it marks them as processed. I am getting a strange error I can\

6条回答
  •  不知归路
    2020-12-28 21:05

    I had this same Error but mine was caused from this:

    
    

    the function:

    public List getDistinctSaleSpecies()
        {
            return ejbFacade.getDistinctSpeciesForAllSales();
        }
    

    when i changed the set tag to this it worked:

    
    

提交回复
热议问题