Hello, I’ve built a custom image using the Docker image ortussolutions/commandbox:lucee5-light-alpine-3.9.2
and then installed the Ortus ORM Extension 6.5.2 .lex file from GitHub. When I run my application I get the errors below. When I use the non-light image instead and install no additional extensions my app works correctly. I’m guessing there are CriteriaBuilder changes moving from Hibernate 3 to 5/6… Any ideas?
No matching Method/Function for org.hibernate.internal.CriteriaImpl.add(org.hibernate.criterion.InExpression) found
modules/cborm/models/criterion/CriteriaBuilder.cfc:193
191:
192: // Else, it's a native Java restriction, add it in
193: variables.nativeCriteria.add( thisRestriction );
194:
195: // process interception
models/ConfigurationService.cfc:71
69:
70: var c = configurationService.newCriteria(useQueryCachi...
71: c = c.isIn( "setting", keys );
72: cRes = c.list(asQuery=false);
73: