微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

普通类注入不进spring bean的解决方法

这篇文章主要介绍了普通类注入不进spring bean的解决方法,帮助大家更好的理解和使用spring bean,感兴趣的朋友可以了解下

解决问题:我在做移动端accesstoken的使用遇到一个问题,就是普通类死活注入不进去spring bean,我和同事雷杰通过各种注解,xml配置搞了好久都搞不定,这里插个眼,有空补一下spring,得深入研究一下

解决办法:后面通过一个spring工具类搞定,这里贴上代码

1、引入这个springUtil类

2、通过构造方法注入

贴上SpringUtils代码

package com.dt.base.weixin.util; import org.springframework.aop.framework.AopContext; import org.springframework.beans.BeansException; import org.springframework.beans.factory.NoSuchBeanDeFinitionException; import org.springframework.beans.factory.config.beanfactoryPostProcessor; import org.springframework.beans.factory.config.ConfigurableListablebeanfactory; import org.springframework.stereotype.Component; /** * @Description: spring工具类 方便在非spring管理环境中获取bean * @author: ZhangChongHu * @Date: 2020/12/8 17:23 * @copyright: Xi'an Dian Tong Software Co., Ltd. All Rights Reserved. * @Version 1.0 */ @Component public final class SpringUtils implements beanfactoryPostProcessor { /** Spring应用上下文环境 */ private static ConfigurableListablebeanfactory beanfactory; @Override public void postProcessbeanfactory(ConfigurableListablebeanfactory beanfactory) throws BeansException { SpringUtils.beanfactory = beanfactory; } /** * 获取对象 * * @param name * @return Object 一个以所给名字注册的bean的实例 * @throws BeansException * */ @SuppressWarnings("unchecked") public static T getBean(String name) throws BeansException { return (T) beanfactory.getBean(name); } /** * 获取类型为requiredType的对象 * * @param clz * @return * @throws BeansException * */ public static T getBean(Class clz) throws BeansException { T result = (T) beanfactory.getBean(clz); return result; } /** * 如果beanfactory包含一个与所给名称匹配的bean定义,则返回true * * @param name * @return boolean */ public static boolean containsBean(String name) { return beanfactory.containsBean(name); } /** * 判断以给定名字注册的bean定义是一个singleton还是一个prototype。 如果与给定名字相应的bean定义没有被找到,将会抛出一个异常(NoSuchBeanDeFinitionException) * * @param name * @return boolean * @throws NoSuchBeanDeFinitionException * */ public static boolean isSingleton(String name) throws NoSuchBeanDeFinitionException { return beanfactory.isSingleton(name); } /** * @param name * @return Class 注册对象的类型 * @throws NoSuchBeanDeFinitionException * */ public static Class> getType(String name) throws NoSuchBeanDeFinitionException { return beanfactory.getType(name); } /** * 如果给定的bean名字在bean定义中有别名,则返回这些别名 * * @param name * @return * @throws NoSuchBeanDeFinitionException * */ public static String[] getAliases(String name) throws NoSuchBeanDeFinitionException { return beanfactory.getAliases(name); } /** * 获取aop代理对象 * * @param invoker * @return */ @SuppressWarnings("unchecked") public static T getAopProxy(T invoker) { return (T) AopContext.currentProxy(); } }

贴上调用方法

注意:调用getValidator()方法直接返回得是 AgentCfgDao agentCfgDao ,相当于

@Autowired private AgentCfgDao agentCfgDao;

/** * copyright (c) 2014 - 2016 Xi'an Dian Tong Software Co., Ltd. All Rights Reserved. * * This software is the confidential and proprietary information of Xi'an Dian Tong * Software Co., Ltd. ("Confidential information"). You shall not disclose such * Confidential information and shall use it only in accordance with the terms * of the license agreement you entered into with Xi'an Dian Tong Software Co., Ltd. */ package com.dt.base.weixin.app; import cn.hutool.http.HttpRequest; import cn.hutool.http.HttpUtil; import com.dt.base.weixin.util.SpringUtils; import com.dt.ncfg.dao.AgentCfgDao; import com.dt.sys.manage.entity.DtwxAgentCfg; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.springframework.stereotype.Component; import java.util.HashMap; /** * 保存了 corpID + secret 和对应的 access token 。 * key: corpID + secret * value: access token */ public class AccesstokenPool { protected final static Logger log = LogManager.getLogger("AccesstokenPool"); DtwxAgentCfg dtwxAgentCfg = null; /** * 获取AgentCfgDao * * @return */ protected AgentCfgDao getValidator() { return SpringUtils.getBean(AgentCfgDao.class); } /** * 根据corpID, secret 换取Accesstoken * * @param corpID corpID * @param secret secret * @param type type * @return */ public String getAccesstoken(String corpID, String secret, String type) { //如果是企业号 if ("QYH".equals(type)) { //可以单独传入http参数,这样参数会自动做URL编码,拼接在URL中 HashMap paramMap = new HashMap(); paramMap.put("corpId", corpID); paramMap.put("corpSecret", secret); String result = HttpUtil.get(resUrl() + "/api/mobile/QYH/isExist", paramMap); return result; } //如果是服务号 if ("FWH".equals(type)) { //可以单独传入http参数,这样参数会自动做URL编码,拼接在URL中 HashMap paramMap = new HashMap(); paramMap.put("appId", corpID); paramMap.put("appSecret", secret); String result = HttpUtil.get(resUrl() + "/api/mobile/FWH/isExist", paramMap); return result; } //如果是钉钉号 if ("DING".equals(type)) { //可以单独传入http参数,这样参数会自动做URL编码,拼接在URL中 HashMap paramMap = new HashMap(); paramMap.put("appKey", corpID); paramMap.put("appSecret", secret); String result = HttpUtil.get(resUrl() + "/api/mobile/DING/isExist", paramMap); return result; } return null; } /** * 根据corpID, secret 删除旧的token * * @param corpID * @param secret * @return */ public String delAccesstoken(String corpID, String secret, String type) { if ("QYH".equals(type)) { //可以单独传入http参数,这样参数会自动做URL编码,拼接在URL中 HashMap paramMap = new HashMap(16); paramMap.put("corpId", corpID); paramMap.put("corpSecret", secret); //请求微服务接口地址 HttpRequest.delete(resUrl() + "/api/mobile/QYH") .form(paramMap).execute().body(); return null; } if ("FWH".equals(type)) { //可以单独传入http参数,这样参数会自动做URL编码,拼接在URL中 HashMap paramMap = new HashMap(16); paramMap.put("appId", corpID); paramMap.put("appSecret", secret); //请求微服务接口地址 HttpRequest.delete(resUrl() + "/api/mobile/FWH") .form(paramMap).execute().body(); return null; } if ("DING".equals(type)) { HashMap paramMap = new HashMap(16); paramMap.put("appKey", corpID); paramMap.put("appSecret", secret); //请求微服务接口地址 HttpRequest.delete(resUrl() + "/api/mobile/DING") .form(paramMap).execute().body(); return ""; } return ""; } /** * 根据corpID, secret 换取JSTicket * * @param corpID * @param secret * @return */ public String getJSTicket(String corpID, String secret, String type) { if ("QYH".equals(type)) { //可以单独传入http参数,这样参数会自动做URL编码,拼接在URL中 HashMap paramMap = new HashMap(16); paramMap.put("corpId", corpID); paramMap.put("corpSecret", secret); //请求微服务接口地址 String result = HttpUtil.get(resUrl() + "/api/mobile/QYH/isJSTicket", paramMap); return result; } if ("FWH".equals(type)) { //可以单独传入http参数,这样参数会自动做URL编码,拼接在URL中 HashMap paramMap = new HashMap(16); paramMap.put("appId", corpID); paramMap.put("appSecret", secret); //请求微服务接口地址 String result = HttpUtil.get(resUrl() + "/api/mobile/FWH/isJSTicket", paramMap); return result; } if ("DING".equals(type)) { HashMap paramMap = new HashMap(16); paramMap.put("appKey", corpID); paramMap.put("appSecret", secret); //请求微服务接口地址 String result = HttpUtil.get(resUrl() + "/api/mobile/DING/isJSTicket", paramMap); return result; } return ""; } /** * 获取数据库中的url * @return url 地址 */ public String resUrl(){ //获取url DtwxAgentCfg dtwxAgentCfg = new DtwxAgentCfg(); dtwxAgentCfg.setAppType("wxInterfaceUrl"); dtwxAgentCfg.setConfigKey("RESQUEST_ACS_TOKEN"); DtwxAgentCfg agentCfg = getValidator().selectDataCfg(dtwxAgentCfg); //url=http://localhost:8080 String url = agentCfg.getConfigValue(); return url; } }

总结:bug是搞定了,但是基础知识还要补,打卡现在是2020/12/16写得博客,那天把这里得知识补了,在回来留痕。

以上就是普通类注入不进spring bean的解决方法的详细内容,更多关于普通类注入不进spring bean的资料请关注编程之家其它相关文章

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐