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

http://github.com/SpringSource/spring-data-mongodb · Java · 143 lines · 36 code · 17 blank · 90 comment · 0 complexity · d49ec2fc0b24bbfade0d8b324de6029f MD5 · raw file

  1. /*
  2. * Copyright 2016-2021 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. * https://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 java.lang.annotation.Documented;
  18. import java.lang.annotation.ElementType;
  19. import java.lang.annotation.Inherited;
  20. import java.lang.annotation.Retention;
  21. import java.lang.annotation.RetentionPolicy;
  22. import java.lang.annotation.Target;
  23. import org.springframework.beans.factory.FactoryBean;
  24. import org.springframework.context.annotation.ComponentScan.Filter;
  25. import org.springframework.context.annotation.Import;
  26. import org.springframework.data.mongodb.core.MongoTemplate;
  27. import org.springframework.data.mongodb.repository.support.MongoRepositoryFactoryBean;
  28. import org.springframework.data.mongodb.repository.support.ReactiveMongoRepositoryFactoryBean;
  29. import org.springframework.data.repository.config.DefaultRepositoryBaseClass;
  30. import org.springframework.data.repository.query.QueryLookupStrategy;
  31. import org.springframework.data.repository.query.QueryLookupStrategy.Key;
  32. /**
  33. * Annotation to activate reactive MongoDB repositories. If no base package is configured through either
  34. * {@link #value()}, {@link #basePackages()} or {@link #basePackageClasses()} it will trigger scanning of the package of
  35. * annotated class.
  36. *
  37. * @author Mark Paluch
  38. * @since 2.0
  39. */
  40. @Target(ElementType.TYPE)
  41. @Retention(RetentionPolicy.RUNTIME)
  42. @Documented
  43. @Inherited
  44. @Import(ReactiveMongoRepositoriesRegistrar.class)
  45. public @interface EnableReactiveMongoRepositories {
  46. /**
  47. * Alias for the {@link #basePackages()} attribute. Allows for more concise annotation declarations e.g.:
  48. * {@code @EnableReactiveMongoRepositories("org.my.pkg")} instead of
  49. * {@code @EnableReactiveMongoRepositories(basePackages="org.my.pkg")}.
  50. */
  51. String[] value() default {};
  52. /**
  53. * Base packages to scan for annotated components. {@link #value()} is an alias for (and mutually exclusive with) this
  54. * attribute. Use {@link #basePackageClasses()} for a type-safe alternative to String-based package names.
  55. */
  56. String[] basePackages() default {};
  57. /**
  58. * Type-safe alternative to {@link #basePackages()} for specifying the packages to scan for annotated components. The
  59. * package of each class specified will be scanned. Consider creating a special no-op marker class or interface in
  60. * each package that serves no purpose other than being referenced by this attribute.
  61. */
  62. Class<?>[] basePackageClasses() default {};
  63. /**
  64. * Specifies which types are eligible for component scanning. Further narrows the set of candidate components from
  65. * everything in {@link #basePackages()} to everything in the base packages that matches the given filter or filters.
  66. */
  67. Filter[] includeFilters() default {};
  68. /**
  69. * Specifies which types are not eligible for component scanning.
  70. */
  71. Filter[] excludeFilters() default {};
  72. /**
  73. * Returns the postfix to be used when looking up custom repository implementations. Defaults to {@literal Impl}. So
  74. * for a repository named {@code PersonRepository} the corresponding implementation class will be looked up scanning
  75. * for {@code PersonRepositoryImpl}.
  76. *
  77. * @return {@literal Impl} by default.
  78. */
  79. String repositoryImplementationPostfix() default "Impl";
  80. /**
  81. * Configures the location of where to find the Spring Data named queries properties file. Will default to
  82. * {@code META-INF/mongo-named-queries.properties}.
  83. *
  84. * @return empty {@link String} by default.
  85. */
  86. String namedQueriesLocation() default "";
  87. /**
  88. * Returns the key of the {@link QueryLookupStrategy} to be used for lookup queries for query methods. Defaults to
  89. * {@link Key#CREATE_IF_NOT_FOUND}.
  90. *
  91. * @return {@link Key#CREATE_IF_NOT_FOUND} by default.
  92. */
  93. Key queryLookupStrategy() default Key.CREATE_IF_NOT_FOUND;
  94. /**
  95. * Returns the {@link FactoryBean} class to be used for each repository instance. Defaults to
  96. * {@link MongoRepositoryFactoryBean}.
  97. *
  98. * @return {@link ReactiveMongoRepositoryFactoryBean} by default.
  99. */
  100. Class<?> repositoryFactoryBeanClass() default ReactiveMongoRepositoryFactoryBean.class;
  101. /**
  102. * Configure the repository base class to be used to create repository proxies for this particular configuration.
  103. *
  104. * @return {@link DefaultRepositoryBaseClass} by default.
  105. */
  106. Class<?> repositoryBaseClass() default DefaultRepositoryBaseClass.class;
  107. /**
  108. * Configures the name of the {@link MongoTemplate} bean to be used with the repositories detected.
  109. *
  110. * @return {@literal reactiveMongoTemplate} by default.
  111. */
  112. String reactiveMongoTemplateRef() default "reactiveMongoTemplate";
  113. /**
  114. * Whether to automatically create indexes for query methods defined in the repository interface.
  115. *
  116. * @return {@literal false} by default.
  117. */
  118. boolean createIndexesForQueryMethods() default false;
  119. /**
  120. * Configures whether nested repository-interfaces (e.g. defined as inner classes) should be discovered by the
  121. * repositories infrastructure.
  122. *
  123. * @return {@literal false} by default.
  124. */
  125. boolean considerNestedRepositories() default false;
  126. }