Home / cs-notes / Architecture / Components / Spring / Boot / Configurations / Profile / java
@Component
@Profile("prod")
public class ProdConfig {
}
- @Profile just with @Component or @Configuration
Home / cs-notes / Architecture / Components / Spring / Boot / Configurations / Profile / java
@Component
@Profile("prod")
public class ProdConfig {
}