栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

通过容器拿到bean

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

通过容器拿到bean

通过Spring容器拿到bean,不通过依赖注入,SpringBoot框架

1.自定义bean

package com.baosight.jhy.pc.cs.domain;

public class Teacher {

    private String name;

    private String address;

    private int age;

    public String getName() {
        return name;
    }

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

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }
}

2.注册bean到Spring容器

package com.baosight.jhy.pc.cs.excel;

import com.baosight.jhy.pc.cs.domain.Teacher;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class ExcelConfig {


    @Bean
    public Teacher teacher() {
        Teacher teacher = new Teacher();
        teacher.setName("无双剑姬");
        teacher.setAddress("恕瑞玛");
        teacher.setAge(6300);
        return teacher;

    }


}

3.Spring容器获取

package com.baosight.jhy.pc.cs.excel;

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;


@Component
public class SpringContextUtils implements ApplicationContextAware {

    private static ApplicationContext context;

    @Override
    public void setApplicationContext(ApplicationContext context)
            throws BeansException {
        SpringContextUtils.context = context;
    }

    public static ApplicationContext getContext() {
        return context;
    }

}

4.获取bean

        Teacher bean = SpringContextUtils.getContext().getBean(Teacher.class);
        bean.getName();

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/461174.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号