9101112131415161718
public class SpringConfiguration { @Bean(name = "service1") public Service service1() { try { return new ServiceFactory().getObject(); } catch (Exception e) { throw new RuntimeException(e); } }