blob: 240c95e160cea1f855d74274e5ce932c4514559b [file] [log] [blame]
/*
* Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package test.beans.wbinflib;
import java.util.Set;
import jakarta.enterprise.inject.Any;
import jakarta.enterprise.inject.spi.Bean;
import jakarta.enterprise.inject.spi.BeanManager;
import jakarta.enterprise.util.AnnotationLiteral;
import jakarta.inject.Inject;
import jakarta.persistence.EntityManager;
import jakarta.persistence.PersistenceContext;
public class TestBeanInWebInfLib {
@Inject
BeanManager bm;
// @Inject //@TestDatabase
// EntityManager emf_at_inj;
@PersistenceContext(unitName="pu1")
EntityManager emf_at_pu;
public String testInjection() {
if (bm == null)
return "Bean Manager not injected into the TestBean in WEB-INF/lib";
System.out.println("BeanManager injected in WEB-INF/lib bean is " + bm);
System.out.println("EMF injected in WEB-INF/lib bean is " + emf_at_pu);
if (emf_at_pu == null)
return "EMF injected via @PersistenceContext is not injected into " +
"the TestBean packaged in WEB-INF/lib";
Set<Bean<?>> webinfLibBeans = bm.getBeans(TestBeanInWebInfLib.class, new AnnotationLiteral<Any>() {});
if (webinfLibBeans.size() != 1)
return "TestBean in WEB-INF/lib is not available via the WEB-INF/lib "
+ "Bean's BeanManager";
System.out.println("BeanManager.getBeans(TestBeanInWebInfLib, Any):" + webinfLibBeans);
for (Bean b: webinfLibBeans) {
debug(b);
}
// Get the proxy delegate
org.jboss.weld.manager.BeanManagerImpl delegate =
((org.jboss.weld.bean.builtin.BeanManagerProxy) bm).delegate();
Iterable<Bean<?>> accessibleBeans = delegate.getAccessibleBeans();
System.out.println("BeanManagerImpl.getAccessibleBeans:" + accessibleBeans);
for (Bean b : accessibleBeans) {
debug(b);
}
Iterable<Bean<?>> beans = delegate.getBeans();
System.out.println("BeanManagerImpl.getBeans:" + beans);
for (Bean b : beans) {
debug(b);
}
// success
return "";
}
private void debug(Bean b) {
String name = b.getBeanClass().getName();
if (name.indexOf("Test") != -1) {
System.out.println(name);
}
}
}