v3.5 issue with module model mappings

im trying to get a module model from my parent app.

getModel("securityService@Security") gives me "Requested instance not
found: 'securityService@Security'".

locateInstance() in Injector.cfc is trying to scan for a cfc with the
name of "securityService@Security.cfc". that is the name of the model
mapping in my moduleConfig.cfc but the actual name is
"securityService.cfc".

moduleConfig:

modelMappings = {
  "securityService@Security" = {
          path = "company.modules.security.model.securityService"
        }
}

this is upgrading from v3.1.

Switch this...
modelMappings = {
  "securityService@Security" = {
          path = "company.modules.security.model.securityService"
        }
TO
binder.map("securityService@Security").to("company.modules.security.model.securityService");

and that should fix it up for you. This will use wirebox instead of the old bean factory.

Curt

looks good.

thanks curt.