Missing dependencies like this usually mean that the corresponding module has not been specified in the AppManifest.
For example, Estatio adds in the security module here [1] fyi, all that a module does (at the moment at least) is identify a package. The framework then uses classpath scanning to search for all services, entities and fixtures underneath that package. In the future a module might pick up more responsibilities/become more sophisticated, but I don't want to invent too much proprietary stuff given that one day we'll be able to rely on Jigsaw modules baked into Java itself. HTH Dan [1] https://github.com/estatio/estatio/blob/master/estatioapp/app/src/main/java/org/estatio/app/EstatioAppManifest.java#L140 On Wed, 22 Mar 2017 at 22:18 Branham, Jeremy [IT] < [email protected]> wrote: > Hello - > > > I am getting this exception when trying to add security module add-on... > > > Caused by: java.lang.NullPointerException > at > > org.isisaddons.module.security.shiro.IsisModuleSecurityRealm$1.lookupUser(IsisModuleSecurityRealm.java:149) > > > It appears this is not getting injected - > @Inject > private ApplicationUserRepository applicationUserRepository;? > > > Do I need another property set? > > Thanks! > > > > > Jeremy D. Branham > Technology Architect > > ________________________________ > > This e-mail may contain Sprint proprietary information intended for the > sole use of the recipient(s). Any use by others is prohibited. If you are > not the intended recipient, please contact the sender and delete all copies > of the message. >
