In my company, we're developping an application which stores its data in a Neo4j DB using a semi-custom persistence layer. Using that persistence layer, we declared our security layer using classical classes : User, Group, Privilege and so on.
These elements are naturally persisted to our Neo4J DB.
Unfortunatly, we now want to declare our custom JAAS realm, usign that Neo4J DB as back-end. To write that realm in the fastest possible fashion, we decided to use our application code in that realm (by the grace of a maven <dependency/>).
Unfortunatly, we have discovered that, when we deploy our JAAS realm, application code fail to load wih various
java.lang.RuntimeException: EJB Container initialization error
Exception while loading the app : EJB Container initialization error
Maybe is it linked to the fact that we deploy our JAAS realm in ${domaindir}/lib ?
Anyway, is there a solution to have one glassfish JAAS realm share some code with one application deployed in domain ?