1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
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 }