commandbox: install contenbox-install on Win: Error building: SettingService@cb -> could not execute query

Hi to all,

trying to play around little with contenbox (contenbox-installer). I could set everything up to work last week, but today I just wanted to try a fresh and clean setup: I am facing the following exception after submitting datasource inside the contentbox welcome page. I’ve deleted my User/.CommandBox several times, also the webroots where I was starting the server from. But now I am facing always this error during setup:

Error building: SettingService@cb -> could not execute query

Using: Windows10
CommandBox 5.0.1+00137 (Windows JRE-64)
Engine Running: Default Engine: Lucee 5.3.4.80
DB: MariaDB 10.4.10.0

How to reproduce:

  1. Downloaded commandBox JRE 64bit and unzip it to c:\box\ + added environment path to system
  2. created working-directory: d:\workspace_contentbox
  3. CMD => cd to d:\workspace_contentbox> box.exe
    after commandbox unpacked everything into c:\user\myuser.CommandBox\
  4. workspace_contentbox>install contentbox-installer
  5. in terminal entered from the same workspace_contentbox=> server start (Default Lucee starts running)
  6. Went to lucees server admin, but have to create C:\Users\claud_000.CommandBox\server{hash}-server\lucee-5.3.4.80\WEB-INF\lucee-server\context\password.txt, what I sucessfully did.
  7. Ceated an empty database “contentbox” in mariaDB via HeidiSQL and setup a dsn “contenbox”, which is verified as “OK”
  8. Setup Application.cfc dialect as mentioned (uncommented presetting for mysqlinnodb)
  9. Loaded the website through tray icon “site home”
  10. At welcome site on DSN I clicked “yes” and continued
    Then I am faced with the following stack trace.:

Lucee 5.3.4.80 Error (Builder.BuildCFCDependencyException)
Message Error building: SettingService@cb -> could not execute query
.
Detail DSL: , Path: contentbox.models.system.SettingService,
Error Location:
D:\workspace_contentbox\modules\contentbox\modules\contentbox-deps\modules\cborm\models\CriteriaBuilder.cfc:254
D:\workspace_contentbox\modules\contentbox\models\system\SettingService.cfc:693
D:\workspace_contentbox\modules\contentbox\models\system\SettingService.cfc:247
Stacktrace The Error Occurred in
D:\workspace_contentbox\coldbox\system\ioc\Builder.cfc: line 180

178: detail = "DSL: #thisMap.getDSL()#, Path: #thisMap.getPath()#,
179: Error Location:
180: #reducedTagContext#"
181: );
182: }

called from D:\workspace_contentbox\coldbox\system\ioc\Injector.cfc: line 402

400: switch( thisMap.getType() ){
401: case “cfc” : {
402: oModel = variables.builder.buildCFC( thisMap, arguments.initArguments );
403: break;
404: }

called from D:\workspace_contentbox\coldbox\system\ioc\scopes\Singleton.cfc: line 70

68:
69: // construct the singleton object
70: var tmpSingleton = variables.injector.buildInstance( arguments.mapping, arguments.initArguments);
71:
72: // If not in wiring thread safety, store in singleton cache to satisfy circular dependencies

called from D:\workspace_contentbox\coldbox\system\ioc\Injector.cfc: line 370

368: var target = variables
369: .scopes[ mapping.getScope() ]
370: .getFromScope( mapping, arguments.initArguments );
371:
372: // Announce creation, initialization and DI magicfinicitation!

called from D:\workspace_contentbox\coldbox\system\ioc\Builder.cfc: line 614

612: if( variables.injector.containsInstance( modelName ) ){
613: // Get Model object
614: var oModel = variables.injector.getInstance( modelName );
615: // Factories: TODO: Add arguments with ‘ref()’ parsing for argument references or ‘dsl()’
616: if( len( methodCall ) ){

called from D:\workspace_contentbox\coldbox\system\ioc\Builder.cfc: line 436

434: // WireBox Internal DSL for models and id
435: case “model” : case “id” : {
436: refLocal.dependency = getModelDSL( argumentCollection=arguments );
437: break;
438: }

called from D:\workspace_contentbox\coldbox\system\ioc\Injector.cfc: line 897

895: definition = thisDIData,
896: targetID = arguments.targetID,
897: targetObject = arguments.targetObject
898: );
899: }

called from D:\workspace_contentbox\coldbox\system\ioc\Injector.cfc: line 653

651: }
652: // DIProperty injection
653: processInjection( targetObject, thisMap.getDIProperties(), arguments.targetID );
654: // DISetter injection
655: processInjection( targetObject, thisMap.getDISetters(), arguments.targetID );

called from D:\workspace_contentbox\coldbox\system\ioc\scopes\Singleton.cfc: line 78

76:
77: // wire up dependencies on the singleton object
78: variables.injector.autowire( target=tmpSingleton, mapping=arguments.mapping );
79:
80: // If thread safe, then now store it in the singleton cache, as all dependencies are now safely wired

called from D:\workspace_contentbox\coldbox\system\ioc\Injector.cfc: line 370

368: var target = variables
369: .scopes[ mapping.getScope() ]
370: .getFromScope( mapping, arguments.initArguments );
371:
372: // Announce creation, initialization and DI magicfinicitation!

called from D:\workspace_contentbox\coldbox\system\web\services\InterceptorService.cfc: line 350

348: */
349: function getInterceptor( required interceptorName ){
350: return variables.wirebox.getInstance( “interceptor-” & arguments.interceptorName );
351: }
352:

called from D:\workspace_contentbox\coldbox\system\web\services\InterceptorService.cfc: line 341

339:
340: // retrieve, build and wire from wirebox
341: return getInterceptor( arguments.interceptorName );
342: }
343:

called from D:\workspace_contentbox\coldbox\system\web\services\InterceptorService.cfc: line 275

273: // Create the Interceptor Class
274: try{
275: oInterceptor = createInterceptor( interceptorClass, objectName, interceptorProperties );
276: } catch( Any e ){
277: variables.log.error( “Error creating interceptor: #arguments.interceptorClass#. #e.detail# #e.message# #e.stackTrace#”, e.tagContext );

called from D:\workspace_contentbox\coldbox\system\web\services\ModuleService.cfc: line 573

571: interceptorProperties = thisInterceptor.properties,
572: interceptorName = thisInterceptor.name & “@” & moduleName
573: );
574: } );
575:

called from D:\workspace_contentbox\coldbox\system\web\services\ModuleService.cfc: line 574

572: interceptorName = thisInterceptor.name & “@” & moduleName
573: );
574: } );
575:
576: // Register module routing entry point pre-pended to routes

called from D:\workspace_contentbox\coldbox\system\web\services\ModuleService.cfc: line 441

439: var sTime = getTickCount();
440:
441: this.activateModule( moduleName );
442:
443: if( variables.logger.canDebug() ){

called from D:\workspace_contentbox\coldbox\system\web\services\LoaderService.cfc: line 59

57: }
58: // Activate All Modules
59: controller.getModuleService().activateAllModules();
60: // Flag the initiation, Framework is ready to serve requests. Praise be to GOD.
61: controller.setColdboxInitiated( true );

called from D:\workspace_contentbox\coldbox\system\Bootstrap.cfc: line 98

96: application[ appKey ] = new coldbox.system.web.Controller( COLDBOX_APP_ROOT_PATH, appKey );
97: // Setup the Framework And Application
98: application[ appKey ].getLoaderService().loadApplication( COLDBOX_CONFIG_FILE, COLDBOX_APP_MAPPING );
99: // Application Start Handler
100: try {

called from D:\workspace_contentbox\Application.cfc: line 85

83: setting requestTimeout=“300”;
84: application.cbBootstrap = new coldbox.system.Bootstrap( COLDBOX_CONFIG_FILE, COLDBOX_APP_ROOT_PATH, COLDBOX_APP_KEY, COLDBOX_APP_MAPPING );
85: application.cbBootstrap.loadColdbox();
86: return true;
87: }

called from D:\workspace_contentbox\Application.cfc: line 137

135: private void function reinitApplication(){
136: //Run onAppStart
137: onApplicationStart();
138: }
139:

called from D:\workspace_contentbox\Application.cfc: line 97

95: !structKeyExists( application, “cbController” )
96: ){
97: reinitApplication();
98: }
99:

Java Stacktrace lucee.runtime.exp.CustomTypeException: Error building: SettingService@cb -> could not execute query
.
at lucee.runtime.tag.Throw._doStartTag(Throw.java:212)
at lucee.runtime.tag.Throw.doStartTag(Throw.java:201)
at throw_cfm$cf.udfCall(/throw.cfm:11)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:205)
at lucee.runtime.functions.system.CFFunction.call(CFFunction.java:109)
at system.ioc.builder_cfc$cf.udfCall1(/coldbox/system/ioc/Builder.cfc:180)
at system.ioc.builder_cfc$cf.udfCall(/coldbox/system/ioc/Builder.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:402)
at system.ioc.injector_cfc$cf.udfCall(/coldbox/system/ioc/Injector.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.ioc.scopes.singleton_cfc$cf.udfCall(/coldbox/system/ioc/scopes/Singleton.cfc:70)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:370)
at system.ioc.injector_cfc$cf.udfCall(/coldbox/system/ioc/Injector.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.ioc.builder_cfc$cf.udfCall2(/coldbox/system/ioc/Builder.cfc:614)
at system.ioc.builder_cfc$cf.udfCall(/coldbox/system/ioc/Builder.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:205)
at lucee.runtime.type.scope.UndefinedImpl.callWithNamedValues(UndefinedImpl.java:792)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithNamedValues(VariableUtilImpl.java:864)
at lucee.runtime.PageContextImpl.getFunctionWithNamedValues(PageContextImpl.java:1728)
at system.ioc.builder_cfc$cf.udfCall2(/coldbox/system/ioc/Builder.cfc:436)
at system.ioc.builder_cfc$cf.udfCall(/coldbox/system/ioc/Builder.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:205)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:681)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.callWithNamedValues(ComponentImpl.java:1917)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithNamedValues(VariableUtilImpl.java:864)
at lucee.runtime.PageContextImpl.getFunctionWithNamedValues(PageContextImpl.java:1728)
at system.ioc.injector_cfc$cf.udfCall3(/coldbox/system/ioc/Injector.cfc:897)
at system.ioc.injector_cfc$cf.udfCall(/coldbox/system/ioc/Injector.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:779)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:653)
at system.ioc.injector_cfc$cf.udfCall(/coldbox/system/ioc/Injector.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:205)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:681)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.callWithNamedValues(ComponentImpl.java:1917)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithNamedValues(VariableUtilImpl.java:864)
at lucee.runtime.PageContextImpl.getFunctionWithNamedValues(PageContextImpl.java:1728)
at system.ioc.scopes.singleton_cfc$cf.udfCall(/coldbox/system/ioc/scopes/Singleton.cfc:78)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:370)
at system.ioc.injector_cfc$cf.udfCall(/coldbox/system/ioc/Injector.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.web.services.interceptorservice_cfc$cf.udfCall2(/coldbox/system/web/services/InterceptorService.cfc:350)
at system.web.services.interceptorservice_cfc$cf.udfCall(/coldbox/system/web/services/InterceptorService.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:779)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.web.services.interceptorservice_cfc$cf.udfCall2(/coldbox/system/web/services/InterceptorService.cfc:341)
at system.web.services.interceptorservice_cfc$cf.udfCall(/coldbox/system/web/services/InterceptorService.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:779)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.web.services.interceptorservice_cfc$cf.udfCall2(/coldbox/system/web/services/InterceptorService.cfc:275)
at system.web.services.interceptorservice_cfc$cf.udfCall(/coldbox/system/web/services/InterceptorService.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:205)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:681)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.callWithNamedValues(ComponentImpl.java:1917)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithNamedValues(VariableUtilImpl.java:864)
at lucee.runtime.PageContextImpl.getFunctionWithNamedValues(PageContextImpl.java:1728)
at system.web.services.moduleservice_cfc$cf.udfCall2(/coldbox/system/web/services/ModuleService.cfc:573)
at system.web.services.moduleservice_cfc$cf.udfCall(/coldbox/system/web/services/ModuleService.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:210)
at lucee.runtime.type.EnvUDF.call(EnvUDF.java:109)
at lucee.runtime.functions.closure.Each._call(Each.java:214)
at lucee.runtime.functions.closure.Each.invoke(Each.java:170)
at lucee.runtime.functions.closure.Each._call(Each.java:89)
at lucee.runtime.functions.closure.Each.call(Each.java:66)
at lucee.runtime.functions.arrays.ArrayEach._call(ArrayEach.java:51)
at lucee.runtime.functions.arrays.ArrayEach.call(ArrayEach.java:38)
at lucee.runtime.functions.arrays.ArrayEach.invoke(ArrayEach.java:67)
at lucee.runtime.interpreter.ref.func.BIFCall.getValue(BIFCall.java:134)
at lucee.runtime.type.util.MemberUtil.call(MemberUtil.java:117)
at lucee.runtime.type.util.ArraySupport.call(ArraySupport.java:322)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.web.services.moduleservice_cfc$cf.udfCall2(/coldbox/system/web/services/ModuleService.cfc:574)
at system.web.services.moduleservice_cfc$cf.udfCall(/coldbox/system/web/services/ModuleService.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.web.services.moduleservice_cfc$cf.udfCall2(/coldbox/system/web/services/ModuleService.cfc:441)
at system.web.services.moduleservice_cfc$cf.udfCall(/coldbox/system/web/services/ModuleService.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at system.web.services.loaderservice_cfc$cf.udfCall(/coldbox/system/web/services/LoaderService.cfc:59)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at coldbox.system.bootstrap_cfc$cf.udfCall1(/coldbox/system/Bootstrap.cfc:98)
at coldbox.system.bootstrap_cfc$cf.udfCall(/coldbox/system/Bootstrap.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at application_cfc$cf.udfCall(/Application.cfc:85)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:779)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at application_cfc$cf.udfCall(/Application.cfc:137)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:779)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709)
at application_cfc$cf.udfCall(/Application.cfc:97)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:342)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:215)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898)
at lucee.runtime.listener.ModernAppListener.call(ModernAppListener.java:436)
at lucee.runtime.listener.ModernAppListener._onRequest(ModernAppListener.java:132)
at lucee.runtime.listener.MixedAppListener.onRequest(MixedAppListener.java:42)
at lucee.runtime.PageContextImpl.execute(PageContextImpl.java:2415)
at lucee.runtime.PageContextImpl._execute(PageContextImpl.java:2405)
at lucee.runtime.PageContextImpl.executeCFML(PageContextImpl.java:2380)
at lucee.runtime.engine.Request.exe(Request.java:43)
at lucee.runtime.engine.CFMLEngineImpl._service(CFMLEngineImpl.java:1110)
at lucee.runtime.engine.CFMLEngineImpl.serviceCFML(CFMLEngineImpl.java:1056)
at lucee.loader.engine.CFMLEngineWrapper.serviceCFML(CFMLEngineWrapper.java:97)
at lucee.loader.servlet.CFMLServlet.service(CFMLServlet.java:51)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:791)
at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)
at org.cfmlprojects.regexpathinfofilter.RegexPathInfoFilter.doFilter(RegexPathInfoFilter.java:47)
at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:269)
at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.base/java.lang.Thread.run(Unknown Source)

Timestamp 4/8/20 12:32:30 PM CEST

Tried doing the same by starting Adobe CF Engine with

server start cfengine=adobe
Received also the following error there:

# Error in executing the DDL.
You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ‘type=InnoDB’ at line 1Other Errors :

Stacktrace:

Remote Address 127.0.0.1
Referrer
Date/Time 08-Apr-20 01:15 PM
Stack Trace

org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL via JDBC Statement
at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:67)
at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:525)
at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:470)
at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.createTable(AbstractSchemaMigrator.java:273)
at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:71)
at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:203)
at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:110)
at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:87)
at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:58)
at coldfusion.orm.hibernate.HibernateConfiguration.exportSchema(HibernateConfiguration.java:441)
at coldfusion.orm.hibernate.HibernateConfiguration.exportSchema(HibernateConfiguration.java:399)
at coldfusion.orm.hibernate.HibernateProvider.initializeORMForApplication(HibernateProvider.java:163)
at coldfusion.orm.hibernate.HibernateProvider.beforeApplicationStart(HibernateProvider.java:72)
at coldfusion.filter.ApplicationFilter.fireBeforeAppStartEvent(ApplicationFilter.java:803)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:415)
at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:162)
at coldfusion.filter.IpFilter.invoke(IpFilter.java:45)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:96)
at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:60)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)
at coldfusion.CfmServlet.service(CfmServlet.java:226)
at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:311)
at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)
at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:46)
at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:47)
at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
at org.cfmlprojects.regexpathinfofilter.RegexPathInfoFilter.doFilter(RegexPathInfoFilter.java:47)
at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:269)
at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.base/java.lang.Thread.run(Unknown Source)
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ‘type=InnoDB’ at line 1
at jdk.internal.reflect.GeneratedConstructorAccessor105.newInstance(Unknown Source)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.base/java.lang.reflect.Constructor.newInstance(Unknown Source)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
at com.mysql.jdbc.Util.getInstance(Util.java:408)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2444)
at com.mysql.jdbc.StatementImpl.executeInternal(StatementImpl.java:845)
at com.mysql.jdbc.StatementImpl.execute(StatementImpl.java:745)
at coldfusion.server.j2ee.sql.JRunStatement.execute(JRunStatement.java:265)
at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:54)
… 65 more

Looks like some old JDBC Driver? Or am I missing a setting? Googled around, but couldn’t find anything related. Hint and answers are very welcome and appreciated.

I believed the version of lucee you are using broke all orm apps. Try the latest lucee.

Luis Majano
CEO
Ortus Solutions, Corp

P/F: 1-888-557-8057

Hi Luis, thank you very much for your quick reply. I appreciate that a lot. I’ve tried now several lucee versions (from lucees download page) from 5.2. to 5.3.5.92 (latest), and all are firing this error. Strange is that it worked already running directly from command box (with JRE included). I’ve also downgraded/upgraded MySQL Drivers from the server admin with no positive results. Maybe it is has something to do with my mariaDB. Look, I am going to try this on a second win10 machine, or directly on an virtual ubuntu box later. Coming back to you in case the problem persists. Thanks and best wishes.

Hi Luis,

important things first: I’VE FIGURED IT OUTt!!! Second: It was an dialect issue.

My assumption of MariaDB being compatible with MySQL wasn’t correct, at least NOT at dialect level. After digging around the issue with logging/googling/looking into sources I finally set hybernate dialect settings in
in contentbox Application.cfc
this.ormSettings = {

dialect = “MariaDB10Dialect”,

And BOOOM!

Feeling happy now!

For others using different DB-Engines with hibernate, have a look for compatible dialects and verify if orm hibernate version of your cfengine supports it, This is as of 5.3:
https://docs.jboss.org/hibernate/orm/5.3/javadocs/org/hibernate/dialect/package-summary.html

One side note:

This error happens since Lucee Release 5.3.1.91 as from (Feb 24, 2020) and still persists until now in Release 5.3.5.92. Downgrading to Release lucee-5.2.9.31 helps with using dialect = “MariaDB10Dialect”. The error is caused during table creation of all content box tablename ( dbName.cb_* ) . I’ve seen error messages also in Adobe CF (started with commandbox) throwing also this ‘type=InnoDB’ SQL error. ‘Type’ has been removed from MySQL since 5.6 and should be ‘engine=InnoDB’ now.

Posting this here in the hope to everyone else is falling into the same issue when using MariaDB with Lucee and ContentBox.

The detailed error SQL Error message is:

2020-04-09 6:30:53 root[root] @ localhost [127.0.0.1] ERROR 1146: Table ‘contentbox.sd’ doesn’t exist : SELECT lsld,d FROM sd
2020-04-09 6:36:42 root[root] @ localhost [127.0.0.1] ERROR 1049: Unknown database ‘contentbox’ : (null)
2020-04-09 6:37:36 root[root] @ localhost [127.0.0.1] ERROR 1102: Incorrect database name ‘’ : SHOW TABLE STATUS FROM 2020-04-09 6:37:36 root[root] @ localhost [127.0.0.1] ERROR 1102: Incorrect database name '' : SHOW TRIGGERS FROM
2020-04-09 6:37:41 root[root] @ localhost [127.0.0.1] ERROR 1064: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ‘type=InnoDB’ at line 1 : create table cb_author (authorID integer not null auto_increment, createdDate datetime not null, modifiedDate datetime not null, isDeleted bit default 0 not null, firstName varchar(100) not null, lastName varchar(100) not null, email varchar(255) not null, username varchar(100) not null unique, password varchar(100) not null, isActive bit not null, lastLogin datetime, biography longtext, preferences longtext, isPasswordReset bit default 0 not null, is2FactorAuth bit default 0 not null, APIToken varchar(255) unique, FK_roleID integer not null, primary key (authorID)) type=InnoDB

Hope that helps.

Is there a ticket in Lucee for the Lucee bugs you just mentioned? I assume changes in the JDBC driver classes is what broke the hibernate auto detection.

Nope Brad. I wanted to file one, but didn’t had the time. I’ve started looking for the snapshot that introduced the issue. Will do it ASAP.

Hi Brad,

so, I’ve tried to setup a very basic and simple ORM application as a testcase to file the bug, but I wasn’t able to reproduce the error. This simple application worked without problems, it even creates the tables without setting a dialect in the ormsettings. So I’ve tried to dig into coldbox cborm module, builder component etc, looked for some line that might be causing this issue that could point to a line or function that would cause the problem during the table creation in the database, but I wasn’t able to find one. I have to admit I am extremly new to Coldbox, and this is the first time I’ve looked into ORM. So this goes beyond my knowledge and I am really not able to help in finding the necessary information in such a detailed manner, that is needed by the lucee devs to be able to identify the problem in the accuracy that is necessary. Sorry!!! Would have loved to help you, because I am really loving your software. If I can help in any other way, please let me know.

Have a very nice day.

Hi Brad,

just tried to install contentbox on a ubuntu 18.04 LTS.

Version Lucee 5.3.5.92
Servlet Container Apache Tomcat/9.0.31
Java 11.0.7 (Azul Systems, Inc.) 64bit
OS Linux (4.15.0-96-generic) 64bit

ORM dialect doesn’t also seem to be recognized for MariaDB on Ubuntu also. No way to install contentbox on that DB right now. When installing it fires the following message. Didn’t find a ticket about this error, however, I did find https://luceeserver.atlassian.net/browse/LDEV-2373 but it relates to some sorte of auto detection. If ORM is set to “MariaDB10Dialect”, it produces the error. Maybe it ignores the setting.

"ERROR","FILES","04/18/2020","05:16:59","coldbox.system.web.services.InterceptorService","Error creating interceptor: contentbox.models.security.RateLimiter. DSL: , Path: contentbox.models.system.SettingService, Error Location: /var/www/testsite/modules/contentbox/modules/contentbox-deps/modules/cborm/models/CriteriaBuilder.cfc:254 /var/www/testsite/modules/contentbox/models/system/SettingService.cfc:693 /var/www/testsite/modules/contentbox/models/system/SettingService.cfc:247 Error building: SettingService@cb -> could not execute query . lucee.runtime.exp.CustomTypeException: Error building: SettingService@cb -> could not execute query . at lucee.runtime.tag.Throw._doStartTag(Throw.java:212) at lucee.runtime.tag.Throw.doStartTag(Throw.java:201) at throw_cfm$cf.udfCall(/throw.cfm:11) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:207) at lucee.runtime.functions.system.CFFunction.call(CFFunction.java:109) at system.ioc.builder_cfc$cf.udfCall1(/coldbox/system/ioc/Builder.cfc:180) at system.ioc.builder_cfc$cf.udfCall(/coldbox/system/ioc/Builder.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:402) at system.ioc.injector_cfc$cf.udfCall(/coldbox/system/ioc/Injector.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.ioc.scopes.singleton_cfc$cf.udfCall(/coldbox/system/ioc/scopes/Singleton.cfc:70) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:370) at system.ioc.injector_cfc$cf.udfCall(/coldbox/system/ioc/Injector.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.ioc.builder_cfc$cf.udfCall2(/coldbox/system/ioc/Builder.cfc:614) at system.ioc.builder_cfc$cf.udfCall(/coldbox/system/ioc/Builder.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:207) at lucee.runtime.type.scope.UndefinedImpl.callWithNamedValues(UndefinedImpl.java:792) at lucee.runtime.util.VariableUtilImpl.callFunctionWithNamedValues(VariableUtilImpl.java:864) at lucee.runtime.PageContextImpl.getFunctionWithNamedValues(PageContextImpl.java:1728) at system.ioc.builder_cfc$cf.udfCall2(/coldbox/system/ioc/Builder.cfc:436) at system.ioc.builder_cfc$cf.udfCall(/coldbox/system/ioc/Builder.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:207) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:681) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.callWithNamedValues(ComponentImpl.java:1917) at lucee.runtime.util.VariableUtilImpl.callFunctionWithNamedValues(VariableUtilImpl.java:864) at lucee.runtime.PageContextImpl.getFunctionWithNamedValues(PageContextImpl.java:1728) at system.ioc.injector_cfc$cf.udfCall3(/coldbox/system/ioc/Injector.cfc:897) at system.ioc.injector_cfc$cf.udfCall(/coldbox/system/ioc/Injector.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:779) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:653) at system.ioc.injector_cfc$cf.udfCall(/coldbox/system/ioc/Injector.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:207) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:681) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.callWithNamedValues(ComponentImpl.java:1917) at lucee.runtime.util.VariableUtilImpl.callFunctionWithNamedValues(VariableUtilImpl.java:864) at lucee.runtime.PageContextImpl.getFunctionWithNamedValues(PageContextImpl.java:1728) at system.ioc.scopes.singleton_cfc$cf.udfCall(/coldbox/system/ioc/scopes/Singleton.cfc:78) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:370) at system.ioc.injector_cfc$cf.udfCall(/coldbox/system/ioc/Injector.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.web.services.interceptorservice_cfc$cf.udfCall2(/coldbox/system/web/services/InterceptorService.cfc:350) at system.web.services.interceptorservice_cfc$cf.udfCall(/coldbox/system/web/services/InterceptorService.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:779) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.web.services.interceptorservice_cfc$cf.udfCall2(/coldbox/system/web/services/InterceptorService.cfc:341) at system.web.services.interceptorservice_cfc$cf.udfCall(/coldbox/system/web/services/InterceptorService.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:779) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.web.services.interceptorservice_cfc$cf.udfCall2(/coldbox/system/web/services/InterceptorService.cfc:275) at system.web.services.interceptorservice_cfc$cf.udfCall(/coldbox/system/web/services/InterceptorService.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:207) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:681) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.callWithNamedValues(ComponentImpl.java:1917) at lucee.runtime.util.VariableUtilImpl.callFunctionWithNamedValues(VariableUtilImpl.java:864) at lucee.runtime.PageContextImpl.getFunctionWithNamedValues(PageContextImpl.java:1728) at system.web.services.moduleservice_cfc$cf.udfCall2(/coldbox/system/web/services/ModuleService.cfc:573) at system.web.services.moduleservice_cfc$cf.udfCall(/coldbox/system/web/services/ModuleService.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:212) at lucee.runtime.type.EnvUDF.call(EnvUDF.java:109) at lucee.runtime.functions.closure.Each._call(Each.java:214) at lucee.runtime.functions.closure.Each.invoke(Each.java:170) at lucee.runtime.functions.closure.Each._call(Each.java:89) at lucee.runtime.functions.closure.Each.call(Each.java:66) at lucee.runtime.functions.arrays.ArrayEach._call(ArrayEach.java:51) at lucee.runtime.functions.arrays.ArrayEach.call(ArrayEach.java:38) at lucee.runtime.functions.arrays.ArrayEach.invoke(ArrayEach.java:67) at lucee.runtime.interpreter.ref.func.BIFCall.getValue(BIFCall.java:134) at lucee.runtime.type.util.MemberUtil.call(MemberUtil.java:117) at lucee.runtime.type.util.ArraySupport.call(ArraySupport.java:322) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.web.services.moduleservice_cfc$cf.udfCall2(/coldbox/system/web/services/ModuleService.cfc:574) at system.web.services.moduleservice_cfc$cf.udfCall(/coldbox/system/web/services/ModuleService.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.web.services.moduleservice_cfc$cf.udfCall2(/coldbox/system/web/services/ModuleService.cfc:441) at system.web.services.moduleservice_cfc$cf.udfCall(/coldbox/system/web/services/ModuleService.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at system.web.services.loaderservice_cfc$cf.udfCall(/coldbox/system/web/services/LoaderService.cfc:59) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at coldbox.system.bootstrap_cfc$cf.udfCall1(/coldbox/system/Bootstrap.cfc:98) at coldbox.system.bootstrap_cfc$cf.udfCall(/coldbox/system/Bootstrap.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898) at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:785) at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:1709) at application_cfc$cf.udfCall(/Application.cfc:85) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:344) at lucee.runtime.type.UDFImpl.call(UDFImpl.java:217) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:680) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:568) at lucee.runtime.ComponentImpl.call(ComponentImpl.java:1898) at lucee.runtime.listener.ModernAppListener.call(ModernAppListener.java:436) at lucee.runtime.listener.ModernAppListener.onApplicationStart(ModernAppListener.java:303) at lucee.runtime.PageContextImpl.initApplicationContext(PageContextImpl.java:3073) at lucee.runtime.listener.ModernAppListener._onRequest(ModernAppListener.java:119) at lucee.runtime.listener.MixedAppListener.onRequest(MixedAppListener.java:42) at lucee.runtime.PageContextImpl.execute(PageContextImpl.java:2415) at lucee.runtime.PageContextImpl._execute(PageContextImpl.java:2405) at lucee.runtime.PageContextImpl.executeCFML(PageContextImpl.java:2380) at lucee.runtime.engine.Request.exe(Request.java:43) at lucee.runtime.engine.CFMLEngineImpl._service(CFMLEngineImpl.java:1126) at lucee.runtime.engine.CFMLEngineImpl.serviceCFML(CFMLEngineImpl.java:1072) at lucee.loader.engine.CFMLEngineWrapper.serviceCFML(CFMLEngineWrapper.java:97) at lucee.loader.servlet.CFMLServlet.service(CFMLServlet.java:51) at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) at org.apache.catalina.valves.RemoteIpValve.invoke(RemoteIpValve.java:747) at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:688) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:367) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1639) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.base/java.lang.Thread.run(Thread.java:834) [{""Raw_Trace"":""system.ioc.builder_cfc$cf.udfCall1(/coldbox/system/ioc/Builder.cfc:180)"",""codePrintPlain"":""178: \t\t\t\t\tdetail = \""DSL: #thisMap.getDSL()#, Path: #thisMap.getPath()#, \n179: \t\t\t\t\tError Location: \n180: \t\t\t\t\t#reducedTagContext#\""\n181: \t\t\t\t);\n182: \t\t\t}\n"",""column"":0,""line"":180,""template"":""/var/www/testsite/coldbox/system/ioc/Builder.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""178: \t\t\t\t\tdetail = &quot;DSL: #thisMap.getDSL()#, Path: #thisMap.getPath()#, <br>\n179: \t\t\t\t\tError Location: <br>\n<b>180: \t\t\t\t\t#reducedTagContext#&quot;</b><br>\n181: \t\t\t\t);<br>\n182: \t\t\t}<br>\n""},{""Raw_Trace"":""system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:402)"",""codePrintPlain"":""400: \t\tswitch( thisMap.getType() ){\n401: \t\t\tcase \""cfc\"" : {\n402: \t\t\t\toModel = variables.builder.buildCFC( thisMap, arguments.initArguments );\n403: \t\t\t\tbreak;\n404: \t\t\t}\n"",""column"":0,""line"":402,""template"":""/var/www/testsite/coldbox/system/ioc/Injector.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""400: \t\tswitch( thisMap.getType() ){<br>\n401: \t\t\tcase &quot;cfc&quot; : {<br>\n<b>402: \t\t\t\toModel = variables.builder.buildCFC( thisMap, arguments.initArguments );</b><br>\n403: \t\t\t\tbreak;<br>\n404: \t\t\t}<br>\n""},{""Raw_Trace"":""system.ioc.scopes.singleton_cfc$cf.udfCall(/coldbox/system/ioc/scopes/Singleton.cfc:70)"",""codePrintPlain"":""68: \n69: \t\t\t\t\t// construct the singleton object\n70: \t\t\t\t\tvar tmpSingleton = variables.injector.buildInstance( arguments.mapping, arguments.initArguments);\n71: \n72: \t\t\t\t\t// If not in wiring thread safety, store in singleton cache to satisfy circular dependencies\n"",""column"":0,""line"":70,""template"":""/var/www/testsite/coldbox/system/ioc/scopes/Singleton.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""68: <br>\n69: \t\t\t\t\t// construct the singleton object<br>\n<b>70: \t\t\t\t\tvar tmpSingleton = variables.injector.buildInstance( arguments.mapping, arguments.initArguments);</b><br>\n71: <br>\n72: \t\t\t\t\t// If not in wiring thread safety, store in singleton cache to satisfy circular dependencies<br>\n""},{""Raw_Trace"":""system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:370)"",""codePrintPlain"":""368: \t\tvar target = variables\n369: \t\t\t.scopes[ mapping.getScope() ]\n370: \t\t\t.getFromScope( mapping, arguments.initArguments );\n371: \n372: \t\t// Announce creation, initialization and DI magicfinicitation!\n"",""column"":0,""line"":370,""template"":""/var/www/testsite/coldbox/system/ioc/Injector.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""368: \t\tvar target = variables<br>\n369: \t\t\t.scopes[ mapping.getScope() ]<br>\n<b>370: \t\t\t.getFromScope( mapping, arguments.initArguments );</b><br>\n371: <br>\n372: \t\t// Announce creation, initialization and DI magicfinicitation!<br>\n""},{""Raw_Trace"":""system.ioc.builder_cfc$cf.udfCall2(/coldbox/system/ioc/Builder.cfc:614)"",""codePrintPlain"":""612: \t\tif( variables.injector.containsInstance( modelName ) ){\n613: \t\t\t// Get Model object\n614: \t\t\tvar oModel = variables.injector.getInstance( modelName );\n615: \t\t\t// Factories: TODO: Add arguments with 'ref()' parsing for argument references or 'dsl()'\n616: \t\t\tif( len( methodCall ) ){\n"",""column"":0,""line"":614,""template"":""/var/www/testsite/coldbox/system/ioc/Builder.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""612: \t\tif( variables.injector.containsInstance( modelName ) ){<br>\n613: \t\t\t// Get Model object<br>\n<b>614: \t\t\tvar oModel = variables.injector.getInstance( modelName );</b><br>\n615: \t\t\t// Factories: TODO: Add arguments with 'ref()' parsing for argument references or 'dsl()'<br>\n616: \t\t\tif( len( methodCall ) ){<br>\n""},{""Raw_Trace"":""system.ioc.builder_cfc$cf.udfCall2(/coldbox/system/ioc/Builder.cfc:436)"",""codePrintPlain"":""434: \t\t\t// WireBox Internal DSL for models and id\n435: \t\t\tcase \""model\"" : case \""id\"" : {\n436: \t\t\t\trefLocal.dependency = getModelDSL( argumentCollection=arguments );\n437: \t\t\t\tbreak;\n438: \t\t\t}\n"",""column"":0,""line"":436,""template"":""/var/www/testsite/coldbox/system/ioc/Builder.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""434: \t\t\t// WireBox Internal DSL for models and id<br>\n435: \t\t\tcase &quot;model&quot; : case &quot;id&quot; : {<br>\n<b>436: \t\t\t\trefLocal.dependency = getModelDSL( argumentCollection=arguments );</b><br>\n437: \t\t\t\tbreak;<br>\n438: \t\t\t}<br>\n""},{""Raw_Trace"":""system.ioc.injector_cfc$cf.udfCall3(/coldbox/system/ioc/Injector.cfc:897)"",""codePrintPlain"":""895: \t\t\t\t\tdefinition = thisDIData,\n896: \t\t\t\t\ttargetID = arguments.targetID,\n897: \t\t\t\t\ttargetObject = arguments.targetObject\n898: \t\t\t\t);\n899: \t\t\t}\n"",""column"":0,""line"":897,""template"":""/var/www/testsite/coldbox/system/ioc/Injector.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""895: \t\t\t\t\tdefinition = thisDIData,<br>\n896: \t\t\t\t\ttargetID = arguments.targetID,<br>\n<b>897: \t\t\t\t\ttargetObject = arguments.targetObject</b><br>\n898: \t\t\t\t);<br>\n899: \t\t\t}<br>\n""},{""Raw_Trace"":""system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:653)"",""codePrintPlain"":""651: \t\t\t}\n652: \t\t\t// DIProperty injection\n653: \t\t\tprocessInjection( targetObject, thisMap.getDIProperties(), arguments.targetID );\n654: \t\t\t// DISetter injection\n655: \t\t\tprocessInjection( targetObject, thisMap.getDISetters(), arguments.targetID );\n"",""column"":0,""line"":653,""template"":""/var/www/testsite/coldbox/system/ioc/Injector.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""651: \t\t\t}<br>\n652: \t\t\t// DIProperty injection<br>\n<b>653: \t\t\tprocessInjection( targetObject, thisMap.getDIProperties(), arguments.targetID );</b><br>\n654: \t\t\t// DISetter injection<br>\n655: \t\t\tprocessInjection( targetObject, thisMap.getDISetters(), arguments.targetID );<br>\n""},{""Raw_Trace"":""system.ioc.scopes.singleton_cfc$cf.udfCall(/coldbox/system/ioc/scopes/Singleton.cfc:78)"",""codePrintPlain"":""76: \n77: \t\t\t\t\t// wire up dependencies on the singleton object\n78: \t\t\t\t\tvariables.injector.autowire( target=tmpSingleton, mapping=arguments.mapping );\n79: \n80: \t\t\t\t\t// If thread safe, then now store it in the singleton cache, as all dependencies are now safely wired\n"",""column"":0,""line"":78,""template"":""/var/www/testsite/coldbox/system/ioc/scopes/Singleton.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""76: <br>\n77: \t\t\t\t\t// wire up dependencies on the singleton object<br>\n<b>78: \t\t\t\t\tvariables.injector.autowire( target=tmpSingleton, mapping=arguments.mapping );</b><br>\n79: <br>\n80: \t\t\t\t\t// If thread safe, then now store it in the singleton cache, as all dependencies are now safely wired<br>\n""},{""Raw_Trace"":""system.ioc.injector_cfc$cf.udfCall1(/coldbox/system/ioc/Injector.cfc:370)"",""codePrintPlain"":""368: \t\tvar target = variables\n369: \t\t\t.scopes[ mapping.getScope() ]\n370: \t\t\t.getFromScope( mapping, arguments.initArguments );\n371: \n372: \t\t// Announce creation, initialization and DI magicfinicitation!\n"",""column"":0,""line"":370,""template"":""/var/www/testsite/coldbox/system/ioc/Injector.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""368: \t\tvar target = variables<br>\n369: \t\t\t.scopes[ mapping.getScope() ]<br>\n<b>370: \t\t\t.getFromScope( mapping, arguments.initArguments );</b><br>\n371: <br>\n372: \t\t// Announce creation, initialization and DI magicfinicitation!<br>\n""},{""Raw_Trace"":""system.web.services.interceptorservice_cfc$cf.udfCall2(/coldbox/system/web/services/InterceptorService.cfc:350)"",""codePrintPlain"":""348: \t */\n349: \tfunction getInterceptor( required interceptorName ){\n350: \t\treturn variables.wirebox.getInstance( \""interceptor-\"" & arguments.interceptorName );\n351: \t}\n352: \n"",""column"":0,""line"":350,""template"":""/var/www/testsite/coldbox/system/web/services/InterceptorService.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""348: \t */<br>\n349: \tfunction getInterceptor( required interceptorName ){<br>\n<b>350: \t\treturn variables.wirebox.getInstance( &quot;interceptor-&quot; &amp; arguments.interceptorName );</b><br>\n351: \t}<br>\n352: <br>\n""},{""Raw_Trace"":""system.web.services.interceptorservice_cfc$cf.udfCall2(/coldbox/system/web/services/InterceptorService.cfc:341)"",""codePrintPlain"":""339: \n340: \t\t// retrieve, build and wire from wirebox\n341: \t\treturn getInterceptor( arguments.interceptorName );\n342: \t}\n343: \n"",""column"":0,""line"":341,""template"":""/var/www/testsite/coldbox/system/web/services/InterceptorService.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""339: <br>\n340: \t\t// retrieve, build and wire from wirebox<br>\n<b>341: \t\treturn getInterceptor( arguments.interceptorName );</b><br>\n342: \t}<br>\n343: <br>\n""},{""Raw_Trace"":""system.web.services.interceptorservice_cfc$cf.udfCall2(/coldbox/system/web/services/InterceptorService.cfc:275)"",""codePrintPlain"":""273: \t\t\t\t// Create the Interceptor Class\n274: \t\t\t\ttry{\n275: \t\t\t\t\toInterceptor = createInterceptor( interceptorClass, objectName, interceptorProperties );\n276: \t\t\t\t} catch( Any e ){\n277: \t\t\t\t\tvariables.log.error( \""Error creating interceptor: #arguments.interceptorClass#. #e.detail# #e.message# #e.stackTrace#\"", e.tagContext );\n"",""column"":0,""line"":275,""template"":""/var/www/testsite/coldbox/system/web/services/InterceptorService.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""273: \t\t\t\t// Create the Interceptor Class<br>\n274: \t\t\t\ttry{<br>\n<b>275: \t\t\t\t\toInterceptor = createInterceptor( interceptorClass, objectName, interceptorProperties );</b><br>\n276: \t\t\t\t} catch( Any e ){<br>\n277: \t\t\t\t\tvariables.log.error( &quot;Error creating interceptor: #arguments.interceptorClass#. #e.detail# #e.message# #e.stackTrace#&quot;, e.tagContext );<br>\n""},{""Raw_Trace"":""system.web.services.moduleservice_cfc$cf.udfCall2(/coldbox/system/web/services/ModuleService.cfc:573)"",""codePrintPlain"":""571: \t\t\t\t\tinterceptorProperties \t= thisInterceptor.properties,\n572: \t\t\t\t\tinterceptorName \t\t= thisInterceptor.name & \""@\"" & moduleName\n573: \t\t\t\t);\n574: \t\t\t} );\n575: \n"",""column"":0,""line"":573,""template"":""/var/www/testsite/coldbox/system/web/services/ModuleService.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""571: \t\t\t\t\tinterceptorProperties \t= thisInterceptor.properties,<br>\n572: \t\t\t\t\tinterceptorName \t\t= thisInterceptor.name &amp; &quot;@&quot; &amp; moduleName<br>\n<b>573: \t\t\t\t);</b><br>\n574: \t\t\t} );<br>\n575: <br>\n""},{""Raw_Trace"":""system.web.services.moduleservice_cfc$cf.udfCall2(/coldbox/system/web/services/ModuleService.cfc:574)"",""codePrintPlain"":""572: \t\t\t\t\tinterceptorName \t\t= thisInterceptor.name & \""@\"" & moduleName\n573: \t\t\t\t);\n574: \t\t\t} );\n575: \n576: \t\t\t// Register module routing entry point pre-pended to routes\n"",""column"":0,""line"":574,""template"":""/var/www/testsite/coldbox/system/web/services/ModuleService.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""572: \t\t\t\t\tinterceptorName \t\t= thisInterceptor.name &amp; &quot;@&quot; &amp; moduleName<br>\n573: \t\t\t\t);<br>\n<b>574: \t\t\t} );</b><br>\n575: <br>\n576: \t\t\t// Register module routing entry point pre-pended to routes<br>\n""},{""Raw_Trace"":""system.web.services.moduleservice_cfc$cf.udfCall2(/coldbox/system/web/services/ModuleService.cfc:441)"",""codePrintPlain"":""439: \t\t\t\tvar sTime = getTickCount();\n440: \n441: \t\t\t\tthis.activateModule( moduleName );\n442: \n443: \t\t\t\tif( variables.logger.canDebug() ){\n"",""column"":0,""line"":441,""template"":""/var/www/testsite/coldbox/system/web/services/ModuleService.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""439: \t\t\t\tvar sTime = getTickCount();<br>\n440: <br>\n<b>441: \t\t\t\tthis.activateModule( moduleName );</b><br>\n442: <br>\n443: \t\t\t\tif( variables.logger.canDebug() ){<br>\n""},{""Raw_Trace"":""system.web.services.loaderservice_cfc$cf.udfCall(/coldbox/system/web/services/LoaderService.cfc:59)"",""codePrintPlain"":""57: \t\t}\n58: \t\t// Activate All Modules\n59: \t\tcontroller.getModuleService().activateAllModules();\n60: \t\t// Flag the initiation, Framework is ready to serve requests. Praise be to GOD.\n61: \t\tcontroller.setColdboxInitiated( true );\n"",""column"":0,""line"":59,""template"":""/var/www/testsite/coldbox/system/web/services/LoaderService.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""57: \t\t}<br>\n58: \t\t// Activate All Modules<br>\n<b>59: \t\tcontroller.getModuleService().activateAllModules();</b><br>\n60: \t\t// Flag the initiation, Framework is ready to serve requests. Praise be to GOD.<br>\n61: \t\tcontroller.setColdboxInitiated( true );<br>\n""},{""Raw_Trace"":""coldbox.system.bootstrap_cfc$cf.udfCall1(/coldbox/system/Bootstrap.cfc:98)"",""codePrintPlain"":""96: \t\tapplication[ appKey ] = new coldbox.system.web.Controller( COLDBOX_APP_ROOT_PATH, appKey );\n97: \t\t// Setup the Framework And Application\n98: \t\tapplication[ appKey ].getLoaderService().loadApplication( COLDBOX_CONFIG_FILE, COLDBOX_APP_MAPPING );\n99: \t\t// Application Start Handler\n100: \t\ttry {\n"",""column"":0,""line"":98,""template"":""/var/www/testsite/coldbox/system/Bootstrap.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""96: \t\tapplication[ appKey ] = new coldbox.system.web.Controller( COLDBOX_APP_ROOT_PATH, appKey );<br>\n97: \t\t// Setup the Framework And Application<br>\n<b>98: \t\tapplication[ appKey ].getLoaderService().loadApplication( COLDBOX_CONFIG_FILE, COLDBOX_APP_MAPPING );</b><br>\n99: \t\t// Application Start Handler<br>\n100: \t\ttry {<br>\n""},{""Raw_Trace"":""application_cfc$cf.udfCall(/Application.cfc:85)"",""codePrintPlain"":""83: \t\tsetting requestTimeout=\""300\"";\n84: \t\tapplication.cbBootstrap = new coldbox.system.Bootstrap( COLDBOX_CONFIG_FILE, COLDBOX_APP_ROOT_PATH, COLDBOX_APP_KEY, COLDBOX_APP_MAPPING );\n85: \t\tapplication.cbBootstrap.loadColdbox();\n86: \t\treturn true;\n87: \t}\n"",""column"":0,""line"":85,""template"":""/var/www/testsite/Application.cfc"",""id"":""??"",""type"":""cfml"",""codePrintHTML"":""83: \t\tsetting requestTimeout=&quot;300&quot;;<br>\n84: \t\tapplication.cbBootstrap = new coldbox.system.Bootstrap( COLDBOX_CONFIG_FILE, COLDBOX_APP_ROOT_PATH, COLDBOX_APP_KEY, COLDBOX_APP_MAPPING );<br>\n<b>85: \t\tapplication.cbBootstrap.loadColdbox();</b><br>\n86: \t\treturn true;<br>\n87: \t}<br>\n""}]" Enter code here...

Have a good day.

That was a tough one… But finally I was able to install contentbox and mariadb. Leaving the information here case someone else gets stuck:

Stack:

ContentBox v4.2.1+737
Lucee 5.3.3.62
Servlet Container: Apache Tomcat/9.0.31
Java: 11.0.4 (AdoptOpenJDK) 64bit
OS: Linux Ubuntu 18.04. LTS (4.15.0-96-generic) at
DB: MariaDB 10.1.44 using InnoDB
Fronted by Apache/2.4.29 (Ubuntu)

Even using MariaDB with InnoDB-Engine, ORM dialect settings has to be MySQLDialect. If you let hibernate decide by letting the dialect definition as comment in coldbox Application.cfc , MySQLDialect is the dialect that gets selected. My assumption that dialect=“MariaDB10Dialect” worked was very wrong!!! Lucee won’t identify “MariaDB10Dialect” and “MySQLDialect” gets silently selected then. I was able to check this by dumping the selected dialect with the following code:

ObjORM=ORMGetSession( "contentbox" ); WriteDump( ObjORM.getSessionFactory().getDialect() );

I’ve tried various types of dialects mentioned here https://github.com/lucee/extension-hibernate/blob/master/source/java/src/org/lucee/extension/orm/hibernate/Dialect.java without success. However, after viewing some sql-error.logs and try and error and googling a lot, the following post gave me the final breakthrough: https://dba.stackexchange.com/questions/231219/mariadb-10-1-38-specified-key-was-too-long-max-key-length-is-767-bytes

Openen the MariaDB config file /etc/mysql/mariadb.conf.d/50-server.cnf

and added the following lines to the mysqld section:

[mysqld]

innodb_file_format = Barracuda

innodb_file_per_table = on

innodb_default_row_format = dynamic

innodb_large_prefix = 1

innodb_file_format_max = Barracuda

restarted mariadb and the installation worked then.