bean.xmlを生成します。
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> </beans>
beanを追加
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="mybean1" class="jp.spring.sample1.MyBean"> <property name="message" value="this is sample bean!"></property> </bean> </beans>
app.javaを書き換えます
package jp.spring.sample1; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class App { private static ApplicationContext app; public static void main(String[] args) { app = new ClassPathXmlApplicationContext("bean.xml"); MyBean bean = (MyBean)app.getBean("mybean1"); System.out.println(bean); } }