您的位置:首页 > 编程语言 > Java开发

Spring系列:Spring实现HelloWord

2014-03-13 11:20 274 查看








Animal.java

package com.project;

public class Animal {
private String name;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}
}


Main.java

package com.project;

import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;

public class Main {

public static void main(String[] args) {
Resource resource=new ClassPathResource("applicationContext.xml");
BeanFactory beanFactory=new XmlBeanFactory(resource);
Animal animal=(Animal)beanFactory.getBean("animal");
System.out.println(animal.getName());
}
}


applicationContext.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" xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> 
<bean id="animal" class="com.project.Animal">
<property name="name">
<value>Dog</value>
</property>
</bean>
</beans>


运行结果:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: