View Javadoc

1   /**
2    * Copyright 2005-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.krad.data.config;
17  
18  import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
19  import org.kuali.rice.core.framework.resourceloader.BeanFactoryResourceLoader;
20  import org.kuali.rice.krad.data.DataObjectService;
21  import org.kuali.rice.krad.data.KradDataServiceLocator;
22  import org.springframework.beans.factory.FactoryBean;
23  import org.springframework.context.support.ClassPathXmlApplicationContext;
24  
25  import javax.xml.namespace.QName;
26  
27  public class KradDataFactoryBean implements FactoryBean<DataObjectService> {
28  
29      private static final String SPRING_FILE = "classpath:org/kuali/rice/krad/data/config/KRADDataSpringBeans.xml";
30  
31      @Override
32      public DataObjectService getObject() throws Exception {
33          // first, let's see if it's already been initialized
34          DataObjectService dataObjectService = KradDataServiceLocator.getDataObjectService();
35          if (dataObjectService == null) {
36              ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(SPRING_FILE);
37              BeanFactoryResourceLoader rl = new BeanFactoryResourceLoader(new QName("krad-data"), context);
38              rl.start();
39              GlobalResourceLoader.addResourceLoader(rl);
40              dataObjectService = KradDataServiceLocator.getDataObjectService();
41          }
42          if (dataObjectService == null) {
43              throw new IllegalStateException("Failed to locate or initialize krad data framework.");
44          }
45          return dataObjectService;
46      }
47  
48      @Override
49      public Class<?> getObjectType() {
50          return DataObjectService.class;
51      }
52  
53      @Override
54      public boolean isSingleton() {
55          return true;
56      }
57  
58  }