Skip to content

Tag: spring

Exception with JPA Query Spring

I want to get List of my objects by jpa query I’m using this code: But I get the exception: What is the problem there? Answer There are some missing spaces at the end of string literals. For example after concat the result is like “…from VzClass vzjoin vz.PHClass…”. It should loo…