Class DataMongoFeature
java.lang.Object
io.micronaut.starter.feature.testresources.EaseTestingFeature
io.micronaut.starter.feature.database.DataMongoFeature
- All Implemented Interfaces:
io.micronaut.core.naming.Described,io.micronaut.core.naming.Named,io.micronaut.core.order.Ordered,Feature,OneOfFeature,DataDocumentFeature,DataFeature,MongoContributingTestContainerDependency,ContributingTestContainerDependency
- Direct Known Subclasses:
DataMongo,DataMongoReactive
public abstract class DataMongoFeature
extends EaseTestingFeature
implements DataDocumentFeature, MongoContributingTestContainerDependency
Base class for our data-mongo features.
-
Field Summary
Fields inherited from interface io.micronaut.starter.feature.testcontainers.ContributingTestContainerDependency
TESTCONTAINERS_GROUP_IDFields inherited from interface io.micronaut.starter.feature.database.DataDocumentFeature
MICRONAUT_DATA_DOCUMENT_PROCESSOR_ARTIFACTFields inherited from interface io.micronaut.starter.feature.database.DataFeature
MICRONAUT_DATA_VERSION, SCHEMA_GENERATE_KEYFields inherited from interface io.micronaut.core.order.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedDataMongoFeature(Data data, TestContainers testContainers, TestResources testResources) -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(GeneratorContext generatorContext) If this method is called for a given feature that means the feature was explicitly selected, included by default as a result ofDefaultFeature.shouldApply(io.micronaut.starter.options.Options, java.util.Set), or added explicitly by another feature throughFeatureContext.addFeature(Feature).getFrameworkDocumentation(GeneratorContext generatorContext) getThirdPartyDocumentation(GeneratorContext generatorContext) protected abstract @NonNull StringvoidprocessSelectedFeatures(FeatureContext featureContext) If this method is called for a given feature then that feature was explicitly selected or was included by default as a result ofDefaultFeature.shouldApply(io.micronaut.starter.options.Options, java.util.Set).Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.micronaut.starter.feature.database.DataFeature
getCategory, getDatasourceConfig, getFeatureClassMethods inherited from interface io.micronaut.core.naming.Described
getDescriptionMethods inherited from interface io.micronaut.projectgen.core.feature.Feature
getDescription, getName, getOrder, getTitle, isCommunity, isPreview, isVisible, supportsMethods inherited from interface io.micronaut.starter.feature.database.MongoContributingTestContainerDependency
testContainersDependencies
-
Constructor Details
-
DataMongoFeature
-
-
Method Details
-
apply
Description copied from interface:FeatureIf this method is called for a given feature that means the feature was explicitly selected, included by default as a result ofDefaultFeature.shouldApply(io.micronaut.starter.options.Options, java.util.Set), or added explicitly by another feature throughFeatureContext.addFeature(Feature). At this point the feature list is set and cannot change. -
getFrameworkDocumentation
- Specified by:
getFrameworkDocumentationin interfaceFeature- Parameters:
generatorContext- Generator Context- Returns:
- Returns a link to Framework documentation about the feature. eg. https://micronaut-projects.github.io/micronaut-cache/latest/guide/index.html#hazelcast
-
processSelectedFeatures
Description copied from interface:FeatureIf this method is called for a given feature then that feature was explicitly selected or was included by default as a result ofDefaultFeature.shouldApply(io.micronaut.starter.options.Options, java.util.Set). This method can be implemented to allow features to modify the list of features that will apply to the project. The methodsFeatureContext.addFeature(Feature)andFeatureContext.exclude(FeaturePredicate)are the primary ways to add and remove features from the context.FeatureContext.isPresent(Class)can be used to determine the existence of other features in order to make decisions.- Specified by:
processSelectedFeaturesin interfaceFeature- Overrides:
processSelectedFeaturesin classEaseTestingFeature- Parameters:
featureContext- The feature context
-
getThirdPartyDocumentation
- Specified by:
getThirdPartyDocumentationin interfaceFeature- Parameters:
generatorContext- Generator Context- Returns:
- Returns a link to third party. E.g. https://hazelcast.org
-
mongoArtifact
-