JPAstreamer is a lightweight toolkit for expressing JPA queries as Java Streams.
I have added the following in my POM.xml file to make the Spring STS (Eclipse) IDE, the JPAStreamer aware. However, It still does not recognize any code which has "$" (e.g. jpaStreamer.stream(User.class)
.filter(User$.country.equal("Germany").and(User$.firstName.equal("Otto")))
.count(); )
Added the following in my POM.xml
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>
${project.build.directory}/generated-sources/annotations
</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
jpaStreamer.stream(Entity.class).count();
?
.filter()
and see if that solves the problem (another renderer will be used in this case).
.filter($Person.name.notEquals(“71287618717187hdvahashv”))