I wouldn't suggest doing it this way....
What you should do is have your JACC deployer come after the EJB3 deployers and look for:
|
| public void deploy(DeploymentUnit unit) throws DeploymentException
| {
| Ejb3Deployment deployment = unit.getAttachment(Ejb3Deployment.class);
| if (deployment == null) return; // there is no EJB3 deployment in this file
|
Scanning is time consuming. We don't want 50 deployers doing scanning.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3997140#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...