You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The name of component is never override by configuration either in annotation or annotationless mode.
name takes always the <artifactId> as value but it should be override by specific configuration if present.
Annotiation mode:
@ComponentApplication(name = "hello-world", deploymentMode = DeploymentMode.build, exposeService = true, envs = @env(name = "key1", value = "val1"))
should generate:
The name of component is never override by configuration either in annotation or annotationless mode.
name takes always the
<artifactId>
as value but it should be override by specific configuration if present.Annotiation mode:
@ComponentApplication(name = "hello-world", deploymentMode = DeploymentMode.build, exposeService = true, envs = @env(name = "key1", value = "val1"))
should generate:
Annotiationless mode:
application.properties like
should produce:
The text was updated successfully, but these errors were encountered: