Class KotlinApplication
java.lang.Object
io.micronaut.starter.feature.lang.kotlin.KotlinApplication
- All Implemented Interfaces:
io.micronaut.core.naming.Described,io.micronaut.core.naming.Named,io.micronaut.core.order.Ordered,ApplicationFeature,Feature,KotlinApplicationFeature
@Requires(property="micronaut.starter.feature.kotlin.application.enabled",
value="true",
defaultValue="true")
@Singleton
public class KotlinApplication
extends Object
implements KotlinApplicationFeature
Kotlin application feature implementation.
Provides support for generating a Kotlin application, including the main application file and corresponding test files, depending on the selected application type and features.
-
Field Summary
Fields inherited from interface io.micronaut.core.order.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidaddApplication(GeneratorContext generatorContext, ModuleContext module) Adds the application template to the module.protected voidaddApplicationTest(GeneratorContext generatorContext, ModuleContext module) Adds the application test template to the module.protected com.fizzed.rocker.RockerModelapplication(GeneratorContext generatorContext, ModuleContext module) Builds the applicationRockerModelused to render the application source file.protected com.fizzed.rocker.RockerModelapplicationTest(GeneratorContext generatorContext) Builds the application testRockerModelbased on the selected test framework and language.voidapply(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).@NonNull StringgetName()The name of the feature.protected final StringgetPath()@Nullable StringmainClassName(GeneratorContext generatorContext) protected booleanshouldGenerateApplicationFile(GeneratorContext generatorContext) Determines whether an application file should be generated based on the application type and the presence of theFunctionFeature.booleanThis method must be implemented to ensure it is only selectable for the desired application types.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.micronaut.projectgen.core.feature.ApplicationFeature
isVisibleMethods inherited from interface io.micronaut.core.naming.Described
getDescriptionMethods inherited from interface io.micronaut.projectgen.core.feature.Feature
getCategory, getDescription, getFrameworkDocumentation, getThirdPartyDocumentation, getTitle, isCommunity, isPreview, processSelectedFeaturesMethods inherited from interface io.micronaut.projectgen.core.feature.KotlinApplicationFeature
getOrder
-
Constructor Details
-
KotlinApplication
public KotlinApplication()
-
-
Method Details
-
mainClassName
- Specified by:
mainClassNamein interfaceApplicationFeature
-
getName
Description copied from interface:FeatureThe name of the feature. It must be unique. -
supports
Description copied from interface:FeatureThis method must be implemented to ensure it is only selectable for the desired application types. This method is not used for determining if a default feature should be applied. -
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.- Specified by:
applyin interfaceApplicationFeature- Specified by:
applyin interfaceFeature- Parameters:
generatorContext- THe generator context
-
shouldGenerateApplicationFile
Determines whether an application file should be generated based on the application type and the presence of theFunctionFeature.- Parameters:
generatorContext- The context for project generation.- Returns:
- true if an application file should be generated; false otherwise.
-
addApplication
Adds the application template to the module.- Parameters:
generatorContext- The context for project generation.module- The module to which the application template is added.
-
application
protected com.fizzed.rocker.RockerModel application(GeneratorContext generatorContext, ModuleContext module) Builds the applicationRockerModelused to render the application source file.- Parameters:
generatorContext- The context for project generation.module- The module in which the application is added.- Returns:
- The Rocker model for the application template.
-
addApplicationTest
Adds the application test template to the module.- Parameters:
generatorContext- The context for project generation.module- The module to which the test template is added.
-
applicationTest
Builds the application testRockerModelbased on the selected test framework and language.- Parameters:
generatorContext- The context for project generation.- Returns:
- The Rocker model for the application test template.
-
getPath
-