Menu

Post image 1
Post image 2
Post image 3
1 / 3
0

ORM library Ujorm 3.0 is released

DEV Community·Pavel Ponec·18 days ago
#wuwJZFaY
#database#java#news#sql#version#dependency
Reading 0:00
15s threshold

Pavel Ponec

Today, the final version of Ujorm 3.0.0 was released, featuring a completely new ORM module for working with JavaBean and Record objects. The goal was a transparent solution with no additional dependencies, supporting type-safe construction of SQL statements.

Ujorm3 requires Java 17 or higher:

<dependencies>
    <dependency>
        <groupId>org.ujorm</groupId>
        <artifactId>ujo-core</artifactId>
        <version>3.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.ujorm</groupId>
        <artifactId>ujo-orm</artifactId>
        <version>3.0.0</version>
    </dependency>
</dependencies>

Enter fullscreen mode Exit fullscreen mode

More information is available on the project's homepage on GitHub.

Read More