29303132333435
@ImportResource("org/springframework/test/context/junit4/profile/importresource/import.xml") public class DefaultProfileConfig { @Bean public Pet pet() { return new Pet("Fido"); }
27282930313233
@Configuration public class DefaultProfileConfig { @Bean public Pet pet() { return new Pet("Fido"); }
170171172173174175176
return employee; } @Bean public Pet pet() { return new Pet("Fido"); }
41424344454647
@Configuration static class Config { @Bean public Pet pet() { return new Pet("Fido"); }
42434445464748
@Configuration static class ContextConfiguration { @Bean public Pet pet() { return new Pet("Fido"); }