首页 > 编程语言 > 详细

Spring中使用纯Java类配置代替XML配置

时间:2021-03-02 22:34:51      阅读:28      评论:0      收藏:0      [点我收藏+]

实体类

package com.iflytek.pojo;

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

@Component
public class User {
    @Value("小明")
    private String name;

    public String getName() {
        return name;
    }

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

    @Override
    public String toString() {
        return "User{" +
                "name=‘" + name + ‘\‘‘ +
                ‘}‘;
    }
}

Java类进行配置

package com.iflytek.config;

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

//相当于applicationContext.xml
@Configuration
@ComponentScan("com.iflytek.pojo")
public class UserConfig {

    //注册一个bean,就相当于我们之前写的一个bean标签
    //这个方法的名字,就相当于bean标签中的id属性
    //这个方法的返回值类型,就相当于bean标签中的class属性
    @Bean
    public User getUser(){
        return new User();//就是返回要注入到bean的对象!
    }
}

测试类

import com.iflytek.config.UserConfig;
import com.iflytek.pojo.User;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class TestDemo {
    public static void main(String[] args) {
        /*用配置类做的话,需要使用AnnotationConfigApplicationContext 上下文来获取容器
        通过配置类的class对象加载!*/
        ApplicationContext context = new AnnotationConfigApplicationContext(UserConfig.class);
        User getUser = (User) context.getBean("getUser");
        System.out.println(getUser.getName());
    }

Spring中使用纯Java类配置代替XML配置

原文:https://www.cnblogs.com/rswpc/p/14471387.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!