编程语言
首页 > 编程语言> > spring-JavaConfig实现配置

spring-JavaConfig实现配置

作者:互联网

不再使用spring的配置文件,而是用一个java类代替

1 编写实体类

package com.lv.pojo;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

//这个注解代表,这个类被spring接管,注册到了IOC容器中.
@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 + '\'' +
                '}';
    }
}

2 编写java配置类

package com.lv.config;

import org.springframework.context.annotation.Configuration;

@Configuration
public class LvConfig2 {
}
package com.lv.config;

import com.lv.pojo.User;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

//加了@Configuration注解得类也会被spring托管,注册到IOC容器中,因为@Configuration本来就是一个@Component.
//@Configuration代表这是一个配置类,和spring配置文件是一样的
@Configuration
//扫描包
@ComponentScan("com.lv.pojo")
//引入另一个配置类
@Import(LvConfig2.class)
public class LvConfig {
    //注册一个bean,就相当于我们之前写的一个bean标签
    //这个方法的名字,就相当于bean标签中的id属性
    //这个方法的返回值,就相当于bean标签的class属性
    @Bean
    public User getUser(){
        //返回的就是要注入到Bean的对象
        return new User();
    }
}

3 测试

@Test
public void test(){
    //如果完全使用了配置类方式去做,我们就只能通过AnnotationConfigApplicationContext来获取容器,通过配置类的class对象加载
    ApplicationContext context = new AnnotationConfigApplicationContext(LvConfig.class);
    User getUser = context.getBean("getUser", User.class);
    System.out.println(getUser.getName());
}

4 执行结果

标签:name,spring,配置,springframework,public,JavaConfig,import,Configuration,class
来源: https://www.cnblogs.com/lv1024/p/15813083.html