javax.el.PropertyNotFoundException: Property 'foo' not found on type com.example.Bean

前端 未结 6 2048
-上瘾入骨i
-上瘾入骨i 2020-11-21 23:37

I have results from

Query query = session.createQuery(\"From Pool as p left join fetch p.poolQuestion as s\");

query and I would like to di

6条回答
  •  悲哀的现实
    2020-11-22 00:07

    I was facing the similar type of issue: Code Snippet :

    ${xx.id}

    There was a space after orderlist like this : "${orderList} " because of which the xx variable was getting coverted into String and was not able to call xx.id.

    So make sure about space. They play crucial role sometimes. :p

提交回复
热议问题