@Configuration
class Service{
@Bean(name="service")
public Service service(){
return new Service();
}
public double getDouble(){
return 01.02;
}
}
ApplicationContext context = new ClassPathXmlApplicationContext("ApplicationContext.xml");
Service service = (Service)context.getBean("service");