Jakarta NoSQL is a comprehensive framework designed to simplify the integration of Java applications with various NoSQL databases. By providing a unified API and a set of powerful annotations, Jakarta NoSQL enables developers to seamlessly work with different NoSQL data stores while maintaining flexibility and productivity.
-
Increase productivity performing common NoSQL operations.
-
Rich Object Mapping integrated.
-
Java-based Query and Fluent-API.
-
It is designed to work with various NoSQL databases and can quickly adapt to support new types and behaviors through extensions.
-
Annotation-oriented using Jakarta Persistence-like naming when it makes sense
Jakarta NoSQL provides one API for each NoSQL database type. However, it incorporates the same annotations from the Jakarta Persistence specification and heritage Java Persistence Architecture (JPA) to map Java objects. Therefore, with just these annotations that look like JPA, there is support for more than twenty NoSQL databases.
@Entity
public class Car {
@Id
private Long id;
@Column
private String name;
@Column
private CarType type;
//...
}
The annotations from the Mapping API will look familiar to Jakarta Persistence developers:
Annotation |
Description |
|
Specifies that the class is an entity. This annotation is applied to the entity class. |
|
Specifies the primary key of an entity. |
|
Specifies the mapped column for a persistent property or field. |
|
Specifies a class whose mapping information is applied to entities that inherit from it. |
|
Declares a class whose instances are stored as an intrinsic part of an owning entity, sharing the identity of the entity. |
|
Specifies the inheritance mapping strategy for the entity class hierarchy. |
|
Specifies the discriminator column for the mapping strategy. |
|
Specifies the value of the discriminator column for the annotated entity type. |
|
Specifies how the values of a field or property are converted to a basic type or a type that can be persisted by a persistence provider. |
These annotations provide a powerful toolkit for defining and mapping entities in NoSQL databases, analogous to their counterparts in Jakarta Persistence.
After mapping an entity, you can explore the advantage of using a Template
interface, which can increase productivity on NoSQL operations.
@Inject
Template template;
...
Car ferrari = Car.id(1L)
.name("Ferrari")
.type(CarType.SPORT);
template.insert(ferrari);
Optional<Car> car = template.find(Car.class, 1L);
template.delete(Car.class, 1L);
The Template
interface provides specialized methods to leverage the features of specific NoSQL database types.
Maven dependency
<dependency>
<groupId>jakarta.nosql</groupId>
<artifactId>jakarta.nosql-api</artifactId>
<version>1.0.0-M1</version>
</dependency>
To learn more, please refer to the reference documentation, and JavaDocs.
This project is governed by the Eclipse Foundation of Conduct. By participating, you are expected to uphold this code of conduct. Please report unacceptable behavior to [email protected].
Having trouble with Jakarta NoSQL? We’d love to help!
Please report any bugs, concerns or questions with Jakarta NoSQL to https://github.com/jakartaee/nosql.