设置(XML 配置)
创建 Hello Spring 的步骤:
- 调查 Spring Boot 以查看是否更适合你的需求。
- 使用正确的依赖项设置项目。建议你使用 Maven 或 Gradle 。
- 创建一个 POJO 类,例如
Employee.java
- 创建一个 XML 文件,你可以在其中定义类和变量。例如
beans.xml
- 创建你的主类,例如
Customer.java
- 包含 spring-beans (及其传递依赖项!)作为依赖项。
Employee.java
:
package com.test;
public class Employee {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void displayName() {
System.out.println(name);
}
}
beans.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-4.3.xsd">
<bean id="employee" class="com.test.Employee">
<property name="name" value="test spring"></property>
</bean>
</beans>
Customer.java
:
package com.test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Customer {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Employee obj = (Employee) context.getBean("employee");
obj.displayName();
}
}