- Notifications
You must be signed in to change notification settings - Fork36
JPAstreamer is a lightweight library for expressing JPA queries as Java Streams
License
speedment/jpa-streamer
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
JPAstreamer is a lightweight extension for any JPA provider that allows creation of Java Streams from database content.With a single dependency, your application can immediately operate on database elements using standard Stream operators e.g.filter()
,sort()
andmap()
.
The following example assumes there is an existing JPA Entity that represents a table containing films as follows:
@Entity@Table(name ="film",schema ="sakila")publicclassFilmimplementsSerializable {@Id@GeneratedValue(strategy =GenerationType.IDENTITY)@Column(name ="film_id",nullable =false,updatable =false,columnDefinition ="smallint(5)")privateIntegerfilmId;@Column(name ="title",nullable =false,columnDefinition ="varchar(255)")privateStringtitle;@Column(name ="length",columnDefinition ="smallint(5)")privateIntegerlength;@Column(name ="rating",columnDefinition ="enum('G','PG','PG-13','R','NC-17')")privateStringrating;}
To operate on the elements of the table, JPAstreamer is first initialized with a simple builder (in this case using a persistence unit named "sakila"):
JPAStreamerjpaStreamer =JPAStreamer.of("sakila");
The obtained streamer is then used to create Streams that are rendered to database queries through JPA. For example:
jpaStreamer.stream(Film.class)// Film.class is the @Entity representing the film-table .filter(Film$.rating.equal("G")) .sorted(Film$.length.reversed().thenComparing(Film$.title.comparator())) .skip(10) .limit(5) .forEach(System.out::println);
This will print films rated G in reversed length order (where films of equal length will be in title order) but skipping the first ten and then printing only the following five films.(Film$
is automatically generated from the Film-table Entity at compile-time by JPAstreamer).
In order to minimize the burden on the JVM and the database, JPAstreamer eventually renders the Stream to SQL like so (example from Hibernate/MySQL):
select film0_.film_id as film_id1_1_, film0_.description as descript2_1_, film0_.language_id as languag11_1_, film0_.last_update as last_upd3_1_, film0_.length as length4_1_, film0_.rating as rating5_1_, film0_.rental_duration as rental_d6_1_, film0_.rental_rate as rental_r7_1_, film0_.replacement_cost as replacem8_1_, film0_.special_features as special_9_1_, film0_.title as title10_1_from film film0_where film0_.rating=?order by film0_.length desc, film0_.title asclimit ?, ?
["G", 10, 5]
More examples are available in the JPAstreamerdocumentation.
Since JPAstreamer acts merely as an API extension for existing JPA providers it requires minimal installation and configuration efforts. You only need to specify that the JPAstreamer dependency is required to compile your source code.
Note | JPAStreamer requires the use of Java 11 or later. |
In Maven, the following JPAstreamer dependency is added to the project’s pom.xml-file.
<dependencies> <dependency> <groupId>com.speedment.jpastreamer</groupId> <artifactId>jpastreamer-core</artifactId> <version>${jpa-streamer-version}</version> </dependency></dependencies><plugins><!-- Needed by some IDEs--> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.2.0</version> <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></plugins>
In Gradle, the following JPAstreamer dependency is added to the project’s build.gradle-file (replace "version" with the latest JPAstremer version):
repositories { mavenCentral()}dependencies { compile"com.speedment.jpastreamer:jpastreamer-core:version" annotationProcessor"com.speedment.jpastreamer:fieldgenerator-standard:version"}/* Needed by some IDEs*/sourceSets { main { java { srcDir'src/main/java' srcDir'target/generated-sources/annotations' } }}
Documentation -https://speedment.github.io/jpa-streamer
JPAstreamer Demo Repository -https://github.com/speedment/jpa-streamer-demo/
Gitter Chat -https://gitter.im/speedment/jpa-streamer
Website -www.jpastreamer.org
We gladly welcome any form of contributions, whether it is comments and questions, filed issues or pull requests.
JPAstreamer is released under theLGPL 2.1 License.
About
JPAstreamer is a lightweight library for expressing JPA queries as Java Streams