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

前端 未结 6 2040
-上瘾入骨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:15

    I get the same error on my JSP and the bad rated answer was correct

    I had the folowing line:

    and get the folowing error:

    javax.el.PropertyNotFoundException: Property 'agent' not found on type java.lang.String

    deleting the space before ${userList} solved my problem

    If some have the same problem, he will find quickly this post and does not waste 3 days in googeling to find help.

提交回复
热议问题