之前的例子在演示过程中直接使用了xml的配置方式,对于刚刚接触Spring的同学来说肯定也是蒙圈的。这篇我们就从配置开始聊起。
在开发过程中,程序员通常使用这两种方式进行Spring的配置:
- 基于XML配置文件配置
- 基于Java代码配置
对于第一种配置方式,我们来看一个例子,还是引用之前的。
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
5 <!-- 让Spring管理 Student bean -->
6 <bean id="student" class="demo1.Student">
7 <property name="name" value="小明"></property>
8 <property name="homework" ref="homework"></property>
9 </bean>
10
11 <!-- 让Spring管理Homework bean-->
12 <bean id="homework" class="demo1.Homework">
13 <property name="content" value="how to calc 3+2 ?"></property>
14 </bean>
15
16 <!-- 切面定义-->
17 <bean id="checktime" class="demo1.CheckNowTime"></bean>
18 <aop:config>
19 <aop:aspect ref="checktime">
20 <aop:pointcut id="dohomework" expression="execution(* *.doHomeWork(..))"/>
21 <aop:before pointcut-ref="dohomework" method="beforDoHomework"></aop:before>
22 </aop:aspect>
23 </aop:config>
24 </beans>
除了第一行以外,剩下的所有内容都是与Spring相关的。可以看到,配置项都包含在
你还可以看到,
public class Student {
private String name;
private Homework homework;
public Student(){}
public Student(String name, Homework homework) {
this.name = name;
this.homework = homework;
}
public void doHomeWork(){
System.out.println(homework.getContent());
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Homework getHomework() {
return homework;
}
public void setHomework(Homework homework) {
this.homework = homework;
}
}
View Code
这样对比你是不是就一目了然了?除了"name"之外,还有"value"、"ref",这两个属性是为了给property赋值用的,"value"可以给基本类型或者String、基本类型的包装类进行赋值。"ref"用来给引用类型赋值。"ref"除了可能出现在
AOP这部分暂时跳过,后面再详解。接下来看看基于Java的配置方式。先看一段代码:
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class MyConfig {
@Bean
Student student(){
return new Student("小明",homework());
}
@Bean
Homework homework(){
return new Homework("3+4 = ?");
}
}
这里,我定义了一个叫做MyConfig的类,在类的上面使用了@Configuration注解,使用这个注解就能告诉Spring这个类不是普通的Java类,而是一个Spring配置类,类的名字没有特殊含义,就像xml配置文件的文件名一样,你可以任意命名。在里面我使用@Bean注解了两个函数,两个函数分别创建了两个对象,一个是Student类型,一个是Homework类型。由于Student的构造函数需要一个Homework对象,在这里调用了homework()函数得到一个Homework对象,不难理解吧?与xml配置方式是对应的。不要忘记@Bean注解,只有使用了这个注解,创建的对象才会放到Spring容器中,由Spring管理。接下来用一段代码展示如何使用这个配置类。
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class App {
public static void main(String[] args) {
//ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("appContext.xml");
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);
Student student = context.getBean(Student.class);
System.out.println(student.getName()+"准备做作业了");
student.doHomeWork();
context.close();
}
}
看起来是不是和使用xml配置方式差不多?不要想得太复杂,你要让Spring管理你的bean就要读取相应的配置、使用对应的上下文。在使用SpringMVC、SpringBoot的时候,你可能找不到这样的地方来加载你的配置信息,但是程序也能正常运行,其实是框架内部自动实现了加载而已。关于这两种配置就简单讲到这里啦,师傅引进门,修行靠个人,还有不明白的地方可以自己去尝试或者查阅相关资料。如果这个文章对你有帮助,来一波素质三连!下一篇我们一起学习Spring自动注入。