ORM
The BoxLang ORM module allows your BoxLang application to integrate with the powerful Hibernate ORM
# For Operating Systems using our Quick Installer.
install-bx-module bx-orm
# Using CommandBox to install for web servers.
box install bx-ormBoxLang ORM
@entityName( "Auto" )
@persistent
class {
property name="id" type="string" fieldtype="id" ormtype="string";
property name="make" type="string";
property name="model" type="string";
function onPreInsert(){
log.info( "Inserting new Auto: #getMake()# #getModel()#" );
}
}Hibernate Version Support
Features In A Nutshell
Documentation
GitHub Repository and Reporting Issues
Last updated
Was this helpful?
