我们现在要完全不使用spring的xml配置了,全权交给java来做!
javaConfig是spring的一个子项目,在spring4之后,成了一个核心功能。
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.stereotype.Component;
-
- //这里这个注解的意思,就是说明这个类被Spring接管了,注册到了容器中
- @Component
- public class User {
- private String name;
-
- public String getName() {
- return name;
- }
-
- @Value("小明")
- public void setName(String name) {
- this.name = name;
- }
-
- @Override
- public String toString() {
- return "User{" +
- "name='" + name + '\'' +
- '}';
- }
- }
小结:实体类中的@Component,这里这个注解的意思,就是说明这个类被Spring接管了,注册到了容器中
- import com.yuan.pojo.User;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
-
- @Configuration
- public class MyConfig {
-
- @Bean
- public User user(){
- return new User();
- }
- }
- @Configuration
- @ComponentScan("com.yuan.pojo")
- public class MyConfig2 {
-
- }
小结:
- import com.yuan.config.MyConfig;
- import com.yuan.pojo.User;
- import org.junit.Test;
- import org.springframework.context.ApplicationContext;
- import org.springframework.context.annotation.AnnotationConfigApplicationContext;
-
- public class MyTest {
- @Test
- public void test(){
- //如果完全使用配置类方法去做,我们就只能通过AnnotationConfig 上下文来获取容器,通过配置类的class对象加载
- ApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);
- //方法名就是bean的名字
- User getUser = context.getBean("user", User.class);
- System.out.println(getUser.getName());
- }
- }
小结:
这种纯java的配置方式,在springBoot中随处可见(但是要学习springboot就要了解底层框架ssm)