Search in sources :

Example 21 with EnterpriseBeanInfo

use of org.apache.openejb.assembler.classic.EnterpriseBeanInfo in project tomee by apache.

the class RESTService method getRestEjbs.

protected Map<String, EJBRestServiceInfo> getRestEjbs(final AppInfo appInfo, final String webapp) {
    final Map<String, BeanContext> beanContexts = new HashMap<>();
    for (final EjbJarInfo ejbJar : appInfo.ejbJars) {
        if (ejbJar.webapp && webapp != null && !ejbJar.moduleId.equals(webapp)) {
            continue;
        }
        for (final EnterpriseBeanInfo bean : ejbJar.enterpriseBeans) {
            if (bean.restService) {
                final BeanContext beanContext = containerSystem.getBeanContext(bean.ejbDeploymentId);
                if (beanContext == null) {
                    continue;
                }
                beanContexts.put(bean.ejbClass, beanContext);
            }
        }
    }
    final Map<String, EJBRestServiceInfo> restEjbs = new HashMap<>();
    for (final WebAppInfo webApp : appInfo.webApps) {
        for (final String ejb : webApp.ejbRestServices) {
            if (beanContexts.containsKey(ejb)) {
                restEjbs.put(ejb, new EJBRestServiceInfo(webApp.contextRoot, beanContexts.get(ejb)));
            }
        // else ear probably
        }
    }
    for (final Map.Entry<String, BeanContext> ejbs : beanContexts.entrySet()) {
        final String clazz = ejbs.getKey();
        if (!restEjbs.containsKey(clazz)) {
            // null is important, it means there is no webroot path in standalone
            String context = null;
            if (!OLD_WEBSERVICE_DEPLOYMENT) {
                if (appInfo.appId != null && !appInfo.appId.isEmpty()) {
                    context = appInfo.appId;
                } else {
                    context = ejbs.getValue().getModuleName();
                }
            }
            restEjbs.put(clazz, new EJBRestServiceInfo(context, beanContexts.get(clazz)));
        }
    }
    beanContexts.clear();
    return restEjbs;
}
Also used : EnterpriseBeanInfo(org.apache.openejb.assembler.classic.EnterpriseBeanInfo) BeanContext(org.apache.openejb.BeanContext) WebAppInfo(org.apache.openejb.assembler.classic.WebAppInfo) HashMap(java.util.HashMap) EjbJarInfo(org.apache.openejb.assembler.classic.EjbJarInfo) Map(java.util.Map) HashMap(java.util.HashMap)

Example 22 with EnterpriseBeanInfo

use of org.apache.openejb.assembler.classic.EnterpriseBeanInfo in project tomee by apache.

the class RESTService method afterApplicationCreated.

public void afterApplicationCreated(@Observes final AssemblerAfterApplicationCreated event) {
    if (!enabled)
        return;
    final AppInfo appInfo = event.getApp();
    if ("false".equalsIgnoreCase(appInfo.properties.getProperty("openejb.jaxrs.on", "true"))) {
        return;
    }
    quickCheckIfOldDeploymentShouldBeUsedFromEjbConfig(appInfo);
    if (deployedApplications.add(appInfo)) {
        if (appInfo.webApps.size() == 0) {
            final ClassLoader oldLoader = Thread.currentThread().getContextClassLoader();
            final ClassLoader appClassLoader = getClassLoader(containerSystem.getAppContext(appInfo.appId).getClassLoader());
            Thread.currentThread().setContextClassLoader(appClassLoader);
            try {
                final Map<String, EJBRestServiceInfo> restEjbs = getRestEjbs(appInfo, null);
                if (restEjbs.isEmpty()) {
                    return;
                }
                final Collection<Object> providers;
                if (useDiscoveredProviders(appInfo)) {
                    providers = appProviders(appInfo.jaxRsProviders, appClassLoader);
                } else {
                    providers = new ArrayList<>();
                }
                if ("true".equalsIgnoreCase(appInfo.properties.getProperty(OPENEJB_USE_APPLICATION_PROPERTY, APPLICATION_DEPLOYMENT))) {
                    final Application application = new InternalApplication(null);
                    addEjbToApplication(application, restEjbs);
                    // merge configurations at app level since a single deployment is available
                    final List<IdPropertiesInfo> pojoConfigurations = new ArrayList<>();
                    BeanContext comp = null;
                    for (final EjbJarInfo ejbJar : appInfo.ejbJars) {
                        for (final EnterpriseBeanInfo bean : ejbJar.enterpriseBeans) {
                            if (comp != null) {
                                break;
                            }
                            if (bean.ejbClass.equals(BeanContext.Comp.class.getName())) {
                                comp = containerSystem.getBeanContext(bean.ejbDeploymentId);
                                break;
                            }
                        }
                        if (ejbJar.pojoConfigurations != null) {
                            pojoConfigurations.addAll(ejbJar.pojoConfigurations);
                        }
                    }
                    if (appInfo.pojoConfigurations != null) {
                        pojoConfigurations.addAll(appInfo.pojoConfigurations);
                    }
                    final Map.Entry<String, EJBRestServiceInfo> next = restEjbs.entrySet().iterator().next();
                    if (comp == null) {
                        comp = next.getValue().context;
                    }
                    deployApplication(appInfo, next.getValue().path, restEjbs, comp.getClassLoader(), comp.getInjections(), containerSystem.getAppContext(appInfo.appId).getWebBeansContext(), comp.getJndiContext(), providers, pojoConfigurations, application, wildcard);
                } else {
                    for (final Map.Entry<String, EJBRestServiceInfo> ejb : restEjbs.entrySet()) {
                        final BeanContext ctx = ejb.getValue().context;
                        if (BeanType.MANAGED.equals(ctx.getComponentType())) {
                            deployPojo(appInfo.appId, "", ejb.getValue().path, ctx.getBeanClass(), null, ctx.getClassLoader(), ctx.getInjections(), ctx.getJndiContext(), containerSystem.getAppContext(appInfo.appId).getWebBeansContext(), providers, new ServiceConfiguration(ctx.getProperties(), appInfo.services));
                        } else {
                            deployEJB(appInfo.appId, "", ejb.getValue().path, ctx, providers, appInfo.services);
                        }
                    }
                }
            } finally {
                Thread.currentThread().setContextClassLoader(oldLoader);
            }
        } else {
            for (final WebAppInfo webApp : appInfo.webApps) {
                afterApplicationCreated(appInfo, webApp);
            }
        }
    }
}
Also used : ArrayList(java.util.ArrayList) WebAppInfo(org.apache.openejb.assembler.classic.WebAppInfo) AppInfo(org.apache.openejb.assembler.classic.AppInfo) EnterpriseBeanInfo(org.apache.openejb.assembler.classic.EnterpriseBeanInfo) BeanContext(org.apache.openejb.BeanContext) WebAppInfo(org.apache.openejb.assembler.classic.WebAppInfo) ServiceConfiguration(org.apache.openejb.assembler.classic.util.ServiceConfiguration) IdPropertiesInfo(org.apache.openejb.assembler.classic.IdPropertiesInfo) Application(javax.ws.rs.core.Application) EjbJarInfo(org.apache.openejb.assembler.classic.EjbJarInfo) Map(java.util.Map) HashMap(java.util.HashMap)

Example 23 with EnterpriseBeanInfo

use of org.apache.openejb.assembler.classic.EnterpriseBeanInfo in project tomee by apache.

the class RESTService method quickCheckIfOldDeploymentShouldBeUsedFromEjbConfig.

private void quickCheckIfOldDeploymentShouldBeUsedFromEjbConfig(final AppInfo appInfo) {
    // if forced don't update anything
    if (appInfo.properties.getProperty(OPENEJB_USE_APPLICATION_PROPERTY) != null) {
        return;
    }
    for (final EjbJarInfo ejbJar : appInfo.ejbJars) {
        for (final EnterpriseBeanInfo bean : ejbJar.enterpriseBeans) {
            if (bean.restService) {
                final BeanContext beanContext = containerSystem.getBeanContext(bean.ejbDeploymentId);
                if (beanContext == null) {
                    // ear
                    continue;
                }
                if (containsJaxRsConfiguration(beanContext.getProperties())) {
                    appInfo.properties.setProperty(OPENEJB_USE_APPLICATION_PROPERTY, "false");
                    logOldDeploymentUsage(bean.ejbClass);
                    // no need to look further
                    return;
                }
            }
        }
    }
}
Also used : EnterpriseBeanInfo(org.apache.openejb.assembler.classic.EnterpriseBeanInfo) BeanContext(org.apache.openejb.BeanContext) EjbJarInfo(org.apache.openejb.assembler.classic.EjbJarInfo)

Example 24 with EnterpriseBeanInfo

use of org.apache.openejb.assembler.classic.EnterpriseBeanInfo in project tomee by apache.

the class BusinessInterfacesTest method testLemon.

public void testLemon() throws Exception {
    setUp();
    strict(false);
    final Map<String, EnterpriseBeanInfo> beans = deploy(LemonOneBean.class, LemonTwoBean.class, LemonThreeBean.class, LemonFourBean.class, LemonFiveBean.class, LemonSixBean.class);
    EnterpriseBeanInfo beanInfo;
    beanInfo = beans.get("LemonOneBean");
    assertEquals(list(YellowOneLocal.class), sort(beanInfo.businessLocal));
    assertEquals(list(), sort(beanInfo.businessRemote));
    assertTrue(beanInfo.localbean);
    beanInfo = beans.get("LemonTwoBean");
    assertEquals(list(), sort(beanInfo.businessLocal));
    assertEquals(list(YellowTwoRemote.class), sort(beanInfo.businessRemote));
    assertTrue(beanInfo.localbean);
    beanInfo = beans.get("LemonThreeBean");
    assertEquals(list(), sort(beanInfo.businessLocal));
    assertEquals(list(), sort(beanInfo.businessRemote));
    assertTrue(beanInfo.localbean);
    beanInfo = beans.get("LemonFourBean");
    assertEquals(list(YellowFourLocal.class), sort(beanInfo.businessLocal));
    assertEquals(list(), sort(beanInfo.businessRemote));
    assertTrue(beanInfo.localbean);
    beanInfo = beans.get("LemonFiveBean");
    assertEquals(list(), sort(beanInfo.businessLocal));
    assertEquals(list(YellowFiveRemote.class), sort(beanInfo.businessRemote));
    assertTrue(beanInfo.localbean);
    beanInfo = beans.get("LemonSixBean");
    assertEquals(list(), sort(beanInfo.businessLocal));
    assertEquals(list(), sort(beanInfo.businessRemote));
    assertTrue(beanInfo.localbean);
}
Also used : EnterpriseBeanInfo(org.apache.openejb.assembler.classic.EnterpriseBeanInfo)

Example 25 with EnterpriseBeanInfo

use of org.apache.openejb.assembler.classic.EnterpriseBeanInfo in project tomee by apache.

the class BusinessInterfacesTest method testCrimsonNotStrict.

/**
 * Super class definitions are retrieved
 *
 * @throws Exception
 */
public void testCrimsonNotStrict() throws Exception {
    strict(false);
    final Map<String, EnterpriseBeanInfo> beans = deploy(CrimsonOneBean.class, CrimsonTwoBean.class);
    EnterpriseBeanInfo beanInfo = beans.get("CrimsonOneBean");
    assertEquals(list(RedOneLocal.class), sort(beanInfo.businessLocal));
    assertEquals(list(RedOneRemote.class, RedOneOverridden.class), sort(beanInfo.businessRemote));
    assertTrue(beanInfo.localbean);
    beanInfo = beans.get("CrimsonTwoBean");
    assertEquals(list(RedTwoLocal.class, RedTwoOverridden.class), sort(beanInfo.businessLocal));
    assertEquals(list(RedTwoRemote.class), sort(beanInfo.businessRemote));
    assertTrue(beanInfo.localbean);
}
Also used : EnterpriseBeanInfo(org.apache.openejb.assembler.classic.EnterpriseBeanInfo)

Aggregations

EnterpriseBeanInfo (org.apache.openejb.assembler.classic.EnterpriseBeanInfo)31 EjbJarInfo (org.apache.openejb.assembler.classic.EjbJarInfo)17 BeanContext (org.apache.openejb.BeanContext)8 HashMap (java.util.HashMap)7 AppInfo (org.apache.openejb.assembler.classic.AppInfo)7 WebAppInfo (org.apache.openejb.assembler.classic.WebAppInfo)7 Assembler (org.apache.openejb.assembler.classic.Assembler)6 EjbJar (org.apache.openejb.jee.EjbJar)6 ArrayList (java.util.ArrayList)5 OpenEJBException (org.apache.openejb.OpenEJBException)5 StatelessBean (org.apache.openejb.jee.StatelessBean)5 SecurityServiceInfo (org.apache.openejb.assembler.classic.SecurityServiceInfo)4 SingletonBeanInfo (org.apache.openejb.assembler.classic.SingletonBeanInfo)4 TransactionServiceInfo (org.apache.openejb.assembler.classic.TransactionServiceInfo)4 EjbDeployment (org.apache.openejb.jee.oejb3.EjbDeployment)4 URL (java.net.URL)3 Map (java.util.Map)3 InitialContext (javax.naming.InitialContext)3 StatelessBeanInfo (org.apache.openejb.assembler.classic.StatelessBeanInfo)3 File (java.io.File)2