/* * 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.naming.factory; import java.beans.BeanInfo; import java.beans.Introspector; import java.beans.PropertyDescriptor; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.Enumeration; import java.util.HashMap; import java.util.Hashtable; import java.util.Locale; import java.util.Map; import javax.naming.Context; import javax.naming.Name; import javax.naming.NamingException; import javax.naming.RefAddr; import javax.naming.Reference; import javax.naming.spi.ObjectFactory; import org.apache.naming.ResourceRef; /** * Object factory for any Resource conforming to the JavaBean spec. * *
This factory can be configured in a <Context> element
* in your conf/server.xml
* configuration file. An example of factory configuration is:
* <Resource name="jdbc/myDataSource" auth="SERVLET" * type="oracle.jdbc.pool.OracleConnectionCacheImpl"/> * <ResourceParams name="jdbc/myDataSource"> * <parameter> * <name>factory</name> * <value>org.apache.naming.factory.BeanFactory</value> * </parameter> * <parameter> * <name>driverType</name> * <value>thin</value> * </parameter> * <parameter> * <name>serverName</name> * <value>hue</value> * </parameter> * <parameter> * <name>networkProtocol</name> * <value>tcp</value> * </parameter> * <parameter> * <name>databaseName</name> * <value>XXXX</value> * </parameter> * <parameter> * <name>portNumber</name> * <value>NNNN</value> * </parameter> * <parameter> * <name>user</name> * <value>XXXX</value> * </parameter> * <parameter> * <name>password</name> * <value>XXXX</value> * </parameter> * <parameter> * <name>maxLimit</name> * <value>5</value> * </parameter> * </ResourceParams> ** * @author Aner Perez [aner at ncstech.com] */ public class BeanFactory implements ObjectFactory { // ----------------------------------------------------------- Constructors // -------------------------------------------------------------- Constants // ----------------------------------------------------- Instance Variables // --------------------------------------------------------- Public Methods // -------------------------------------------------- ObjectFactory Methods /** * Create a new Bean instance. * * @param obj The reference object describing the Bean */ @Override public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable,?> environment) throws NamingException { if (obj instanceof ResourceRef) { try { Reference ref = (Reference) obj; String beanClassName = ref.getClassName(); Class> beanClass = null; ClassLoader tcl = Thread.currentThread().getContextClassLoader(); if (tcl != null) { try { beanClass = tcl.loadClass(beanClassName); } catch(ClassNotFoundException e) { } } else { try { beanClass = Class.forName(beanClassName); } catch(ClassNotFoundException e) { e.printStackTrace(); } } if (beanClass == null) { throw new NamingException ("Class not found: " + beanClassName); } BeanInfo bi = Introspector.getBeanInfo(beanClass); PropertyDescriptor[] pda = bi.getPropertyDescriptors(); Object bean = beanClass.getConstructor().newInstance(); /* Look for properties with explicitly configured setter */ RefAddr ra = ref.get("forceString"); Map