
org.apache.webbeans.resource.spi.se.StandaloneResourceInjectionService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openwebbeans-resource Show documentation
Show all versions of openwebbeans-resource Show documentation
Apache OpenWebBeans EE Resource Integration
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.webbeans.resource.spi.se;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.text.MessageFormat;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.annotation.Resource;
import javax.enterprise.inject.Produces;
import javax.persistence.PersistenceContext;
import javax.persistence.PersistenceUnit;
import javax.xml.ws.WebServiceRef;
import org.apache.webbeans.config.OWBLogConst;
import org.apache.webbeans.config.WebBeansContext;
import org.apache.webbeans.exception.WebBeansException;
import org.apache.webbeans.logger.WebBeansLoggerFacade;
import org.apache.webbeans.spi.ResourceInjectionService;
import org.apache.webbeans.spi.api.ResourceReference;
import org.apache.webbeans.util.AnnotationUtil;
public class StandaloneResourceInjectionService implements ResourceInjectionService
{
/**
* When ResourceProxyHandler deserialized, this will instruct owb to create a new actual instance, if
* the actual resource is not serializable.
*/
private static final String DUMMY_STRING = "owb.actual.resource.dummy";
private final StandaloneResourceProcessor processor = StandaloneResourceProcessor.getProcessor();
private static final Logger logger = WebBeansLoggerFacade.getLogger(StandaloneResourceInjectionService.class);
private final WebBeansContext webBeansContext;
/**
* Cache the information if a certain class contains any EE resource at all
*/
private final Map, Boolean> classContainsEEResources = new ConcurrentHashMap<>();
public StandaloneResourceInjectionService(WebBeansContext webBeansContext)
{
this.webBeansContext = webBeansContext;
}
protected WebBeansContext getWebBeansContext()
{
return webBeansContext;
}
@Override
public X getResourceReference(ResourceReference resourceReference)
{
if(resourceReference.supports(Resource.class))
{
Resource resource = resourceReference.getAnnotation(Resource.class);
return processor.getResource(resource, resourceReference.getResourceType());
}
if(resourceReference.supports(WebServiceRef.class))
{
WebServiceRef resource = resourceReference.getAnnotation(WebServiceRef.class);
return processor.getWebServiceResource(resource, resourceReference.getResourceType());
}
if(resourceReference.supports(PersistenceContext.class))
{
PersistenceContext persistenceContext = resourceReference.getAnnotation(PersistenceContext.class);
return processor.getEntityManager(persistenceContext, resourceReference.getResourceType());
}
if(resourceReference.supports(PersistenceUnit.class))
{
PersistenceUnit persistenceUnit = resourceReference.getAnnotation(PersistenceUnit.class);
return processor.getEntityManagerFactory(persistenceUnit, resourceReference.getResourceType());
}
return null;
}
@Override
public void injectJavaEEResources(Object managedBeanInstance)
{
Class currentClass = managedBeanInstance.getClass();
Boolean containsEeResource = classContainsEEResources.get(currentClass);
if (containsEeResource != null && !containsEeResource)
{
// nothing to do it seems.
return;
}
while (currentClass != null && !Object.class.getName().equals(currentClass.getName()))
{
Field[] fields = webBeansContext.getSecurityService().doPrivilegedGetDeclaredFields(currentClass);
for(Field field : fields)
{
if(!field.isAnnotationPresent(Produces.class))
{
if(!Modifier.isStatic(field.getModifiers()))
{
Annotation ann = AnnotationUtil.hasOwbInjectableResource(field.getDeclaredAnnotations());
if(ann != null)
{
@SuppressWarnings("unchecked")
ResourceReference
© 2015 - 2025 Weber Informatics LLC | Privacy Policy