springboot-9-在非springboot管理的类引入bean
Posted bronk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot-9-在非springboot管理的类引入bean相关的知识,希望对你有一定的参考价值。
在非spring管理的包中引入spring管理的类, 可以使用一个类继承ApplicationContextAware即可
分两种, 第一种该类在spring的包扫描范围之下:
package com.iwhere.test.util; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import org.springframework.stereotype.Component; /** * 在普通类中引入spring中的bean, 在springboot的扫描包下 * @ServletComponentScan * * 如果不在springboot的包扫描下, 则不需要component, 但需要在App.java中引入 * @Import(value={SpringAppUtils.class}) * * @author 231 * @time 2017年3月15日 下午2:40:32 2017 */ @Component public class SpringAppUtils implements ApplicationContextAware { private static Logger LOGGER = LoggerFactory.getLogger(SpringAppUtils.class); private static ApplicationContext applicationContext; @Override public void setApplicationContext(ApplicationContext context) throws BeansException { if (SpringAppUtils.applicationContext == null) { applicationContext = context; } LOGGER.info("springAppUtils is init"); } /** * 获取applicationContext * * @return */ public static ApplicationContext getApplicationContext() { return applicationContext; } /** * 通过那么获取bean */ public static Object getBean(String name) { return getApplicationContext().getBean(name); } /** * 通过class获取bean */ public static <T> T getBean(Class<T> clazz) { return getApplicationContext().getBean(clazz); } /** * 通过name和class获取bean */ public static <T> T getBean(String name, Class<T> clazz) { return getApplicationContext().getBean(name, clazz); } }
第二种: 配置类不在springboot扫描之下:
此时类上不需要加 @Component 注解
但需要在App.java中引入
@Import(value={SpringAppUtils.class})
@SpringBootApplication @ServletComponentScan @Import(value={SpringUtil.class}) publicclass App { {main} }
以上是关于springboot-9-在非springboot管理的类引入bean的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot 2 embed tomcat 9.0.26 无法加载jks文件流关闭
在非 Spring 项目中运行 Spring Cloud Contract 测试