This content has been marked as final.
Show 4 replies
-
1. Re: Filtering non-EJB3 deployments in the EJB3 deployer
jaikiran Jul 1, 2009 5:42 AM (in response to aloubyansky)"alex.loubyansky@jboss.com" wrote:
So, I am going to change the "if" above toif(metaData != null && !metaData.isEJB3x()) { log.debug("Ignoring legacy EJB deployment " + unit); return; }
Sounds good. Infact, we use this approach in one of our other deployers http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/trunk/endpoint-deployer/src/main/java/org/jboss/ejb3/endpoint/deployers/EJB3EndpointDeployer.java -
2. Re: Filtering non-EJB3 deployments in the EJB3 deployer
wolfc Jul 1, 2009 7:11 AM (in response to aloubyansky)Which means that this piece of logic should be on one common ground. Maybe an EJB3DeployerHelper?
-
3. Re: Filtering non-EJB3 deployments in the EJB3 deployer
aloubyansky Jul 1, 2009 10:11 AM (in response to aloubyansky)This is fixed as https://jira.jboss.org/jira/browse/JBAS-7070
-
4. Re: Filtering non-EJB3 deployments in the EJB3 deployer
jaikiran Jul 1, 2009 10:54 AM (in response to aloubyansky)"wolfc" wrote:
Which means that this piece of logic should be on one common ground. Maybe an EJB3DeployerHelper?
Yep, we can have it in our ejb3-deployers component. I'll create a task for this.This is fixed as https://jira.jboss.org/jira/browse/JBAS-7070
Alexey, are you planning to do it in AS trunk too? If not, i'll update it in trunk.