/* * ハローサービスアプリケーション */ package pwv.spring.app; import org.springframework.beans.factory.BeanFactory; import org.springframework.beans.factory.xml.XmlBeanFactory; import org.springframework.core.io.FileSystemResource; import pwv.spring.service.IHelloService; public class HelloApp { public static void main(String[] args) { BeanFactory factory = new XmlBeanFactory(new FileSystemResource("hello.xml")); IHelloService helloService = (IHelloService)factory.getBean("helloService"); helloService.sayHello(); } }