/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/config/SimpleMongoRepositoryConfiguration.java

http://github.com/SpringSource/spring-data-mongodb · Java · 196 lines · 66 code · 30 blank · 100 comment · 1 complexity · 1837e6ffa40eb526b0a81a833ed54942 MD5 · raw file

  1. /*
  2. * Copyright 2011 the original author or authors.
  3. *
  4. * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
  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.springframework.data.mongodb.repository.config;
  17. import org.springframework.data.mongodb.repository.support.MongoRepositoryFactoryBean;
  18. import org.springframework.data.repository.config.AutomaticRepositoryConfigInformation;
  19. import org.springframework.data.repository.config.ManualRepositoryConfigInformation;
  20. import org.springframework.data.repository.config.RepositoryConfig;
  21. import org.springframework.data.repository.config.SingleRepositoryConfigInformation;
  22. import org.springframework.util.StringUtils;
  23. import org.w3c.dom.Element;
  24. /**
  25. * {@link RepositoryConfig} implementation to create {@link MongoRepositoryConfiguration} instances for both automatic
  26. * and manual configuration.
  27. *
  28. * @author Oliver Gierke
  29. */
  30. public class SimpleMongoRepositoryConfiguration
  31. extends
  32. RepositoryConfig<SimpleMongoRepositoryConfiguration.MongoRepositoryConfiguration, SimpleMongoRepositoryConfiguration> {
  33. private static final String MONGO_TEMPLATE_REF = "mongo-template-ref";
  34. private static final String CREATE_QUERY_INDEXES = "create-query-indexes";
  35. private static final String DEFAULT_MONGO_TEMPLATE_REF = "mongoTemplate";
  36. /**
  37. * Creates a new {@link SimpleMongoRepositoryConfiguration} for the given {@link Element}.
  38. *
  39. * @param repositoriesElement
  40. */
  41. protected SimpleMongoRepositoryConfiguration(Element repositoriesElement) {
  42. super(repositoriesElement, MongoRepositoryFactoryBean.class.getName());
  43. }
  44. /**
  45. * Returns the bean name of the {@link org.springframework.data.mongodb.core.core.MongoTemplate} to be referenced.
  46. *
  47. * @return
  48. */
  49. public String getMongoTemplateRef() {
  50. String templateRef = getSource().getAttribute(MONGO_TEMPLATE_REF);
  51. return StringUtils.hasText(templateRef) ? templateRef : DEFAULT_MONGO_TEMPLATE_REF;
  52. }
  53. /**
  54. * Returns whether to create indexes for query methods.
  55. *
  56. * @return
  57. */
  58. public boolean getCreateQueryIndexes() {
  59. String createQueryIndexes = getSource().getAttribute(CREATE_QUERY_INDEXES);
  60. return StringUtils.hasText(createQueryIndexes) ? Boolean.parseBoolean(createQueryIndexes) : false;
  61. }
  62. /*
  63. * (non-Javadoc)
  64. *
  65. * @see
  66. * org.springframework.data.repository.config.GlobalRepositoryConfigInformation
  67. * #getAutoconfigRepositoryInformation(java.lang.String)
  68. */
  69. public MongoRepositoryConfiguration getAutoconfigRepositoryInformation(String interfaceName) {
  70. return new AutomaticMongoRepositoryConfiguration(interfaceName, this);
  71. }
  72. /*
  73. * (non-Javadoc)
  74. * @see org.springframework.data.repository.config.RepositoryConfig#getNamedQueriesLocation()
  75. */
  76. public String getNamedQueriesLocation() {
  77. return "classpath*:META-INF/mongo-named-queries.properties";
  78. }
  79. /*
  80. * (non-Javadoc)
  81. *
  82. * @see org.springframework.data.repository.config.RepositoryConfig#
  83. * createSingleRepositoryConfigInformationFor(org.w3c.dom.Element)
  84. */
  85. @Override
  86. protected MongoRepositoryConfiguration createSingleRepositoryConfigInformationFor(Element element) {
  87. return new ManualMongoRepositoryConfiguration(element, this);
  88. }
  89. /**
  90. * Simple interface for configuration values specific to Mongo repositories.
  91. *
  92. * @author Oliver Gierke
  93. */
  94. public interface MongoRepositoryConfiguration extends
  95. SingleRepositoryConfigInformation<SimpleMongoRepositoryConfiguration> {
  96. String getMongoTemplateRef();
  97. boolean getCreateQueryIndexes();
  98. }
  99. /**
  100. * Implements manual lookup of the additional attributes.
  101. *
  102. * @author Oliver Gierke
  103. */
  104. private static class ManualMongoRepositoryConfiguration extends
  105. ManualRepositoryConfigInformation<SimpleMongoRepositoryConfiguration> implements MongoRepositoryConfiguration {
  106. /**
  107. * Creates a new {@link ManualMongoRepositoryConfiguration} for the given {@link Element} and parent.
  108. *
  109. * @param element
  110. * @param parent
  111. */
  112. public ManualMongoRepositoryConfiguration(Element element, SimpleMongoRepositoryConfiguration parent) {
  113. super(element, parent);
  114. }
  115. /*
  116. * (non-Javadoc)
  117. *
  118. * @see org.springframework.data.mongodb.repository.config.
  119. * SimpleMongoRepositoryConfiguration
  120. * .MongoRepositoryConfiguration#getMongoTemplateRef()
  121. */
  122. public String getMongoTemplateRef() {
  123. return getAttribute(MONGO_TEMPLATE_REF);
  124. }
  125. /* (non-Javadoc)
  126. * @see org.springframework.data.mongodb.config.SimpleMongoRepositoryConfiguration.MongoRepositoryConfiguration#getCreateQueryIndexes()
  127. */
  128. public boolean getCreateQueryIndexes() {
  129. String attribute = getAttribute(CREATE_QUERY_INDEXES);
  130. return attribute == null ? false : Boolean.parseBoolean(attribute);
  131. }
  132. }
  133. /**
  134. * Implements the lookup of the additional attributes during automatic configuration.
  135. *
  136. * @author Oliver Gierke
  137. */
  138. private static class AutomaticMongoRepositoryConfiguration extends
  139. AutomaticRepositoryConfigInformation<SimpleMongoRepositoryConfiguration> implements MongoRepositoryConfiguration {
  140. /**
  141. * Creates a new {@link AutomaticMongoRepositoryConfiguration} for the given interface and parent.
  142. *
  143. * @param interfaceName
  144. * @param parent
  145. */
  146. public AutomaticMongoRepositoryConfiguration(String interfaceName, SimpleMongoRepositoryConfiguration parent) {
  147. super(interfaceName, parent);
  148. }
  149. /*
  150. * (non-Javadoc)
  151. *
  152. * @see org.springframework.data.mongodb.repository.config.
  153. * SimpleMongoRepositoryConfiguration
  154. * .MongoRepositoryConfiguration#getMongoTemplateRef()
  155. */
  156. public String getMongoTemplateRef() {
  157. return getParent().getMongoTemplateRef();
  158. }
  159. /* (non-Javadoc)
  160. * @see org.springframework.data.mongodb.config.SimpleMongoRepositoryConfiguration.MongoRepositoryConfiguration#getCreateQueryIndexes()
  161. */
  162. public boolean getCreateQueryIndexes() {
  163. return getParent().getCreateQueryIndexes();
  164. }
  165. }
  166. }