解决Springboot @Autowired 无法注入问题
程序员文章站
2024-02-23 22:17:34
特别提醒:一定要注意文件结构
webappapplication 一定要在包的最外层,否则spring无法对所有的类进行托管,会造成@autowired 无法注入。...
特别提醒:一定要注意文件结构
webappapplication 一定要在包的最外层,否则spring无法对所有的类进行托管,会造成@autowired 无法注入。
1. 添加工具类获取在 spring 中托管的 bean
(1)工具类
package com.common; import org.springframework.beans.beansexception; import org.springframework.beans.factory.nosuchbeandefinitionexception; import org.springframework.context.applicationcontext; import org.springframework.context.applicationcontextaware; /** * @program: ipc_1p * @description: 获取在spring中托管的bean * @author: johnny * @create: 2018-08-03 16:24 **/ public class springcontextutil { private static applicationcontext applicationcontext; // spring应用上下文 // 下面的这个方法上加了@override注解,原因是继承applicationcontextaware接口是必须实现的方法 public static void setapplicationcontext(applicationcontext applicationcontext) throws beansexception { springcontextutil.applicationcontext = applicationcontext; } public static applicationcontext getapplicationcontext() { return applicationcontext; } public static object getbean(string name) throws beansexception { return applicationcontext.getbean(name); } public static object getbean(string name, class requiredtype) throws beansexception { return applicationcontext.getbean(name, requiredtype); } public static boolean containsbean(string name) { return applicationcontext.containsbean(name); } public static boolean issingleton(string name) throws nosuchbeandefinitionexception { return applicationcontext.issingleton(name); } public static class gettype(string name) throws nosuchbeandefinitionexception { return applicationcontext.gettype(name); } public static string[] getaliases(string name) throws nosuchbeandefinitionexception { return applicationcontext.getaliases(name); } }
(2)使用
1)程序启动时,实例化 springcontextutil
@springbootapplication public class webappapplication { private static applicationcontext applicationcontext; public static void main(string[] args) { applicationcontext = springapplication.run(webappapplication.class, args); // springcontextutil springcontextutil = new springcontextutil(); springcontextutil.setapplicationcontext(applicationcontext); system.out.println("服务器启动测试!"); }
2)在使用 @service 的方法中,通过@autowired 注入,使用springcontexutil 获取bean上下文
@autowired senderservice senderservice; public class package_state { @autowired senderservice senderservice; @component private package_state() { senderservice = (senderservice)springcontextutil.getbean("senderservice"); } }
总结
以上所述是小编给大家介绍的解决springboot @autowired 无法注入问题,希望对大家有所帮助
推荐阅读
-
解决SpringBoot项目使用多线程处理任务时无法通过@Autowired注入bean问题
-
解决Springboot @Autowired 无法注入问题
-
spring+springmvc整合mabytis时mapper注入失败问题解决方法
-
解决MySQL5.7安装后没有data文件夹无法登录的问题
-
springBoot 打war包 程序包com.sun.istack.internal不存在的问题及解决方案
-
解决springboot MultipartFile文件上传遇到的问题
-
由于扩展配置问题而无法提供您请求的页面错误解决方法
-
Tomcat服务无法启动的问题的解决方法
-
Springboot解决ajax+自定义headers的跨域请求问题
-
IPv6设置后如何解决MySQL无法连接localhost的问题