Coverage Report - org.kuali.rice.kns.web.servlet.dwr.GlobalResourceDelegatingSpringCreator
 
Classes in this File Line Coverage Branch Coverage Complexity
GlobalResourceDelegatingSpringCreator
0%
0/23
0%
0/12
6
 
 1  
 
 2  
 /*
 3  
  * Copyright 2007 The Kuali Foundation
 4  
  *
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  *
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */package org.kuali.rice.kns.web.servlet.dwr;
 17  
 
 18  
 import javax.servlet.ServletContext;
 19  
 import javax.servlet.http.HttpServletRequest;
 20  
 
 21  
 import org.apache.log4j.Logger;
 22  
 import org.kuali.rice.core.resourceloader.GlobalResourceLoader;
 23  
 import org.springframework.beans.factory.BeanFactory;
 24  
 import org.springframework.web.context.support.WebApplicationContextUtils;
 25  
 import org.springframework.web.servlet.support.RequestContextUtils;
 26  
 
 27  
 import uk.ltd.getahead.dwr.Messages;
 28  
 import uk.ltd.getahead.dwr.WebContextFactory;
 29  
 import uk.ltd.getahead.dwr.create.SpringCreator;
 30  
 
 31  
 /**
 32  
  * A {@link SpringCreator} that checks the {@link GlobalResourceLoader} for the
 33  
  * bean name in question if the default {@link BeanFactory} (the applications)
 34  
  * does not have the bean in question.
 35  
  * 
 36  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 37  
  * 
 38  
  */
 39  0
 public class GlobalResourceDelegatingSpringCreator extends SpringCreator {
 40  
 
 41  0
         private static final Logger LOG = Logger.getLogger(GlobalResourceDelegatingSpringCreator.class);
 42  
 
 43  
         private BeanFactory factory;
 44  
         
 45  
         public static BeanFactory APPLICATION_BEAN_FACTORY;
 46  
 
 47  
         @Override
 48  
         /*
 49  
          * This is largely ripped from the super class. Implementation details
 50  
          * prevent calling the super class and then going to the
 51  
          * GlobalResourceLoader ( the BeanFactory wll throw an exception if the bean
 52  
          * isn't there). The defalt SpringCreator's static BeanFactory override
 53  
          * could not be used - what a pity.
 54  
          * 
 55  
          */
 56  
         public Object getInstance() throws InstantiationException {
 57  0
                 if (factory == null) {
 58  0
                         factory = getBeanFactory();
 59  
                 }
 60  
                 
 61  0
                 if (factory == null) {
 62  0
                         factory = APPLICATION_BEAN_FACTORY;
 63  
                 }
 64  
 
 65  
                 //we could just delegation to the GRL here no need for a resource factory
 66  0
                 if (factory == null) {
 67  0
                         LOG.error("DWR can't find a spring config. See following info logs for solutions"); //$NON-NLS-1$
 68  0
                         LOG.info("- Option 1. In dwr.xml, <create creator='spring' ...> add <param name='location1' value='beans.xml'/> for each spring config file."); //$NON-NLS-1$
 69  0
                         LOG.info("- Option 2. Use a spring org.springframework.web.context.ContextLoaderListener."); //$NON-NLS-1$
 70  0
                         LOG.info("- Option 3. Call SpringCreator.setOverrideBeanFactory() from your web-app"); //$NON-NLS-1$
 71  0
                         throw new InstantiationException(Messages.getString("SpringCreator.MissingConfig")); //$NON-NLS-1$
 72  
                 }
 73  
 
 74  0
                 if (factory.containsBean(this.getBeanName())) {
 75  0
                         return factory.getBean(this.getBeanName());
 76  
                 } else {
 77  0
                         Object bean = GlobalResourceLoader.getService(this.getBeanName());
 78  0
                         if (bean == null) {
 79  0
                                 throw new InstantiationException("Unable to find bean " + this.getBeanName() + " in Rice Global Resource Loader");
 80  
                         }
 81  0
                         return bean;
 82  
                 }
 83  
         }
 84  
 
 85  
         /**
 86  
          * @return A found BeanFactory configuration
 87  
          */
 88  
         private BeanFactory getBeanFactory() {
 89  0
                 ServletContext srvCtx = WebContextFactory.get().getServletContext();
 90  0
                 HttpServletRequest request = WebContextFactory.get().getHttpServletRequest();
 91  
 
 92  0
                 if (request != null) {
 93  0
                         return RequestContextUtils.getWebApplicationContext(request, srvCtx);
 94  
                 } else {
 95  0
                         return WebApplicationContextUtils.getWebApplicationContext(srvCtx);
 96  
                 }
 97  
         }
 98  
 
 99  
 }