|
|
|
|
|
by critium
3807 days ago
|
|
Sorry if I did too much TL;DR but this reads very much like Apache Torque, which has been around for a very loooooooong time. https://db.apache.org/torque/torque-4.0/index.html Apache Torque is an object-relational mapper for java. In other words, Torque lets you access and manipulate data in a relational database using java objects. Unlike most other object-relational mappers, Torque does not use reflection to access user-provided classes, but it generates the necessary classes (including the Data Objects) from an XML schema describing the database layout. The XML file can either be written by hand or a starting point can be generated from an existing database. The XML schema can also be used to generate and execute a SQL script which creates all the tables in the database. As Torque hides database-specific implementation details, Torque makes an application independent of a specific database if no exotic features of the database are used. Usage of code generation eases the customization of the database layer, as you can override the generated methods and thus easily change their behavior. A modularized template structure allows inclusion of your own code generation templates during the code generation process. |
|
Oh and jOOQ has an extremely powerful DSL that is close to 1-1 with SQL and whole bunch of reflection based conversion abilities (including dotted path data binding which I am happy to say I inspired the author of jOOQ to add :) )