Add Ujorm to ORM - #1309
Open
pponec wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds Ujorm to the ORM section.
Ujorm is a JDBC mapping library for Java 17+. It maps rows to mutable JavaBeans or immutable
records through typed keys generated at compile time by an annotation processor, and offers a
query DSL in which the compiler checks both the referenced columns and the type of every value
placed into a condition. Native SQL with named parameter binding is available for cases the DSL
does not cover.
Why it is distinct from existing entries:
abstraction and no transaction management. The README states these as design rules rather than
gaps to be closed later, which is what sets the library apart from the full ORMs in this section.
SQL templates and DAO interfaces. Ujorm generates typed key objects that are used directly as
a query DSL and as the mapping metadata, and it performs no code generation for DAOs.
context. Ujorm treats entities as stateless data carriers and leaves transactions to the caller's
java.sql.Connection.org.ujorm:ujo-orm:3.0.5,jakarta.persistence-apiand the annotation processor areprovidedandorg.jetbrains:annotationsisoptional; the runtime artifacts total roughly 0.27 MB.Details:
org.ujorm:ujo-orm, currently 3.0.5 (2026-08-17).Placement: ORM ("APIs that handle the persistence of objects"), appended at the end of the
section, after SimpleFlatMapper, in ascending alphabetical order.
Disclosure: I am the author of the project.
Suggestion type
Checklist
README_SOURCE.md, not the generatedREADME.md.Summary by cubic
Adds Ujorm to the ORM section to represent a lightweight JDBC mapping library for Java 17+. Unlike full ORMs, it uses compile-time typed keys/DSL and intentionally omits lazy loading, 1:M collections, dialect abstraction, and transaction management; it has no third-party runtime dependencies.
README_SOURCE.mdonly.org.ujorm:ujo-orm.Written for commit f8e6eee. Summary will update on new commits.