Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » Eclipse Web Tools Platform Project (WTP) » Dali: JPA 2.1 validation mark NamedQuery as error, but the query works(JPA Validation in Dali mark NamedQuery as Error when use javax.persistence.NamedQuery)
Dali: JPA 2.1 validation mark NamedQuery as error, but the query works [message #1795769] Fri, 28 September 2018 09:59
Jochen Buchholz is currently offline Jochen BuchholzFriend
Messages: 6
Registered: November 2013
Junior Member
I have a Maven jpa 2.1 hibernate project and want to define a NamedQuery in an entity like
"select f from Forest f join fetch f.tree t join fetch t.leaves l where l is not empty"
The query is marked as Error in the form:
- JOIN FETCH expressions cannot be defined with an identification variable.
and
- The collection-valued path 'l IS NOT EMPTY' must resolve to an association field.

When I change the import
import javax.persistence.NamedQuery;
to
import org.hibernate.annotations.NamedQuery;
the strange errors are gone.

I use jee eclipse photon.

Is there a way to disable these wrong error message?

[Updated on: Fri, 28 September 2018 10:01]

Report message to a moderator

Previous Topic: Native library path not working in tomcat
Next Topic:Making Jetty work with Wordpress on separate server (? right forum?)
Goto Forum:
  


Current Time: Mon May 06 01:56:51 GMT 2024

Powered by FUDForum. Page generated in 0.02760 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top