Latest release: 5.7.0
This is the reference JPA Datastore
implementation of the Holon Platform, using the Java JPA
API for data access and manipulation.
The JPA Datastore relies on the following conventions regarding DataTarget and Path naming strategy:
- The DataTarget name is interpreted as the JPA entity name.
- The Path name is interpreted as a JPA entity attribute name, supporting nested classes through the conventional dot notation.
As a relational Datastore, standard relational expressions are supported (alias, joins and sub-queries).
The JPA Datastore supports any standard JPA ORM library, altough is tested and optimized specifically for:
- Hibernate version 5.6
- EclipseLink version 2.7 or above
A complete Spring and Spring Boot support is provided for JPA Datastore integration in a Spring environment and for auto-configuration facilities.
See the module documentation for details.
Just like any other platform module, this artifact is part of the Holon Platform ecosystem, but can be also used as a stand-alone library.
See Getting started and the platform documentation for further details.
JPA Datastore operations:
DataTarget<MyEntity> TARGET = JpaTarget.of(MyEntity.class);
Datastore datastore = JpaDatastore.builder().entityManagerFactory(myEntityManagerFactory).build();
datastore.save(TARGET, PropertyBox.builder(TEST).set(ID, 1L).set(VALUE, "One").build());
Stream<PropertyBox> results = datastore.query().target(TARGET).filter(ID.goe(1L)).stream(TEST);
List<String> values = datastore.query().target(TARGET).sort(ID.asc()).list(VALUE);
Stream<String> values = datastore.query().target(TARGET).filter(VALUE.startsWith("prefix")).restrict(10, 0).stream(VALUE);
long count = datastore.query(TARGET).aggregate(QueryAggregation.builder().path(VALUE).filter(ID.gt(1L)).build()).count();
Stream<Integer> months = datastore.query().target(TARGET).distinct().stream(LOCAL_DATE.month());
List<MyEntity> entities = datastore.query().target(TARGET).list(BeanProjection.of(MyEntity.class));
datastore.bulkUpdate(TARGET).filter(ID.in(1L, 2L)).set(VALUE, "test").execute();
datastore.bulkDelete(TARGET).filter(ID.gt(0L)).execute();
Transaction management:
long updatedCount = datastore.withTransaction(tx -> {
long updated = datastore.bulkUpdate(TARGET).set(VALUE, "test").execute().getAffectedCount();
tx.commit();
return updated;
});
JPA Datastore configuration using Spring:
@EnableJpaDatastore
@Configuration
class Config {
@Bean
public FactoryBean<EntityManagerFactory> entityManagerFactory(DataSource dataSource) {
LocalContainerEntityManagerFactoryBean emf = new LocalContainerEntityManagerFactoryBean();
emf.setDataSource(dataSource);
emf.setPackagesToScan("com.example.entities");
return emf;
}
}
@Autowired
Datastore datastore;
JPA Datastore auto-configuration using Spring Boot:
spring:
datasource:
url: "jdbc:h2:mem:test"
username: "sa"
holon:
datastore:
trace: true
See the module documentation for the user guide and a full set of examples.
See Holon Platform code structure and conventions to learn about the "real Java API" philosophy with which the project codebase is developed and organized.
The Holon Platform is built using Java 11, so you need a JRE/JDK version 11 or above to use the platform artifacts.
The JPA API version 2.x or above is reccomended to use all the functionalities of the JPA Datastore.
See releases for the available releases. Each release tag provides a link to the closed issues.
The Holon Platform is open source and licensed under the Apache 2.0 license. All the artifacts (including binaries, sources and javadocs) are available from the Maven Central repository.
The Maven group id for this module is com.holon-platform.jpa
and a BOM (Bill of Materials) is provided to obtain the module artifacts:
Maven BOM:
<dependencyManagement>
<dependency>
<groupId>com.holon-platform.jpa</groupId>
<artifactId>holon-datastore-jpa-bom</artifactId>
<version>5.7.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencyManagement>
See the Artifacts list for a list of the available artifacts of this module.
The Holon Platform provides an overall Maven BOM (Bill of Materials) to easily obtain all the available platform artifacts:
Platform Maven BOM:
<dependencyManagement>
<dependency>
<groupId>com.holon-platform</groupId>
<artifactId>bom</artifactId>
<version>${platform-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencyManagement>
See the Artifacts list for a list of the available artifacts of this module.
You can build the sources using Maven (version 3.3.x or above is recommended) like this:
mvn clean install
-
Check the platform documentation or the specific module documentation.
-
Ask a question on Stack Overflow. We monitor the
holon-platform
tag. -
Report an issue.
-
A commercial support is available too.
See the Holon Platform examples repository for a set of example projects.
See Contributing to the Holon Platform.
Join the contribute Gitter room for any question and to contact us.
All the Holon Platform modules are Open Source software released under the Apache 2.0 license.
Maven group id: com.holon-platform.jpa
Artifact id | Description |
---|---|
holon-datastore-jpa |
JPA Datastore implementation |
holon-datastore-jpa-spring |
Spring integration using the @EnableJpa and @EnableJpaDatastore annotations |
holon-datastore-jpa-spring-boot |
Spring Boot integration for JPA stack and Datastore auto-configuration |
holon-starter-jpa-hibernate |
Spring Boot starter for JPA stack and Datastore auto-configuration using Hibernate ORM |
holon-starter-jpa-eclipselink |
Spring Boot starter for JPA stack and Datastore auto-configuration using EclipseLink ORM |
holon-datastore-jpa-bom |
Bill Of Materials |
documentation-datastore-jpa |
Documentation |