015. Profile - dkkahm/study-springfamework5 GitHub Wiki

Bean with Profile

  • Bean without Profile will be loaded always
@Service
@Profile("es")
public class PrimarySpanishGreetingService implements GreetingService {

Set Active Profile ()

Bean with Default Profile

@Service
@Primary
@Profile({"de", "default"})
public class PrimaryGermanGreetingService implements GreetingService {