-
Notifications
You must be signed in to change notification settings - Fork 41.3k
Closed
Description
The new support for running local application instances supported by Testcontainers based services suggests the creation of a secondary application bootstrap class in src/test/java
pointing to the original one but including additional configuration. The proposed way to bootstrap such a class is through SpringApplication.from(…)
returning an Augmented
instance.
As that class is becoming the central bootstrap mechanism for local development, it would be nice to be able to make sure the application is always run with a dedicated profile. Especially, without having to explicitly pass it into the application either via command line arguments or a dedicated launch configuration in the IDE. Something along the lines of:
SpringApplication.from(Application::main)
.withProfilesEnabled(…)
.run(args);
schuch, aldex32, vchrisb, alexandrklimov, devulrix and 5 more
Metadata
Metadata
Assignees
Labels
type: enhancementA general enhancementA general enhancement