1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.data.provider.spring;
17
18 import java.util.Collection;
19 import java.util.List;
20 import java.util.Map;
21
22 import org.kuali.rice.core.api.util.ClassLoaderUtils;
23 import org.kuali.rice.krad.data.metadata.DataObjectMetadata;
24 import org.kuali.rice.krad.data.metadata.impl.DataObjectMetadataImpl;
25 import org.kuali.rice.krad.data.provider.impl.MetadataProviderBase;
26 import org.springframework.beans.factory.support.DefaultListableBeanFactory;
27 import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
28 import org.springframework.core.io.DefaultResourceLoader;
29
30
31
32
33
34
35
36
37
38 public class SpringMetadataProviderImpl extends MetadataProviderBase {
39 private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger
40 .getLogger(SpringMetadataProviderImpl.class);
41
42 protected List<String> resourceLocations;
43 protected DefaultResourceLoader resourceLoader = new DefaultResourceLoader(ClassLoaderUtils.getDefaultClassLoader());
44 protected DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
45
46 public SpringMetadataProviderImpl() {
47 LOG.debug("Building SpringMetadataProviderImpl");
48 }
49
50 @Override
51 public synchronized void initializeMetadata(Collection<Class<?>> types) {
52
53 if (LOG.isDebugEnabled()) {
54 LOG.debug("Loading Metadata Bean Definitions from Locations:");
55 for (String loc : resourceLocations) {
56 LOG.debug(loc);
57 }
58 }
59
60 XmlBeanDefinitionReader xmlReader = new XmlBeanDefinitionReader(beanFactory);
61 String configFileLocationsArray[] = new String[resourceLocations.size()];
62 configFileLocationsArray = resourceLocations.toArray(configFileLocationsArray);
63 xmlReader.loadBeanDefinitions(configFileLocationsArray);
64
65
66 Map<String, DataObjectMetadata> metadataObjects = beanFactory.getBeansOfType(DataObjectMetadata.class);
67 if (LOG.isInfoEnabled()) {
68 LOG.info(metadataObjects.size() + " DataObjectMetadata objects in Spring configuration files");
69 }
70
71 masterMetadataMap.clear();
72 for (DataObjectMetadata metadata : metadataObjects.values()) {
73 if (metadata.getType() != null) {
74 if (metadata instanceof DataObjectMetadataImpl) {
75 ((DataObjectMetadataImpl) metadata).setProviderName(this.getClass().getSimpleName());
76 }
77 masterMetadataMap.put(metadata.getType(), metadata);
78 } else {
79 LOG.error("Configuration Error. MetadataObject in the Spring context contained a null DataObjectType reference: "
80 + metadata);
81 }
82 }
83 }
84
85 public List<String> getResourceLocations() {
86 return resourceLocations;
87 }
88
89 public void setResourceLocations(List<String> resourceLocations) {
90 if (LOG.isDebugEnabled()) {
91 LOG.debug("Resource locations set to: " + resourceLocations);
92 }
93 this.resourceLocations = resourceLocations;
94 }
95
96 @Override
97 public String toString() {
98 return getClass().getName() + " : " + resourceLocations;
99 }
100 }