返回顶部
首页 > 资讯 > 精选 >Springboot怎么在普通类型注入Service或mapper
  • 263
分享到

Springboot怎么在普通类型注入Service或mapper

2023-06-25 15:06:13 263人浏览 八月长安
摘要

本篇内容主要讲解“SpringBoot怎么在普通类型注入Service或mapper”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“springboot怎么在普通类型注入Service或mappe

本篇内容主要讲解“SpringBoot怎么在普通类型注入Service或mapper”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习springboot怎么在普通类型注入Service或mapper”吧!

    Springboot 在普通类型注入Service或mapper

    最近遇到一个难题(大佬可能感觉这太简单了把),对于我这样的小白来说,确实有些头疼。

    接下来说一下我遇到的问题,在Spring Boot中创建了一个UDP客户端,用于监听UDP服务端发送到数据。在实现这一功能时遇到主要遇到了两个难题

    1.由于之前都是通过controller调用service层来实现访问

    现在要建立一个持久的连接来实现监听某一端口的数据,由于做的项目不多,经验不足,spring也没怎么学过所以困扰了很久。

    只是在main方法中开启一个线程简单的new创建实例解决了该问题,虽然不知道这样做对不对,但是能实现功能。(如有更好的办法请告诉小白,谢谢)

    @SpringBootApplication@MapperScan("com.example.net.udpservicertest.mapper") public class UdpServicerTestApplication {     public static void main(String[] args) throws Exception {        SpringApplication.run(UdpServicerTestApplication.class, args);        new Thread(()->{             try {                UDPService udpService = new UDPService();                udpService.startSocketServer();             } catch (Exception e) {                e.printStackTrace();            }        }).start();       } }

    客户端虽然能够启动,但是新的问题又来了

    2.在拿到数据之后,掉service时出现空指针

    这又困扰了小白两天,通过这篇文章得到了这样的解决方案

    (1)首先需要新建一个类,实现 ApplicationContextAware 接口。

    要@Conponment注解

       @Component        public class SpringUtils implements ApplicationContextAware {             private static ApplicationContext applicationContext = null;             @Override            public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {                if(SpringUtils.applicationContext == null){                    SpringUtils.applicationContext  = applicationContext;                }            }             //获取applicationContext            public static ApplicationContext getApplicationContext() {                return applicationContext;            }             //通过name获取 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,以及Clazz返回指定的Bean            public static <T> T getBean(String name,Class<T> clazz){                return getApplicationContext().getBean(name, clazz);            }        }

    (2)在UDP类中获取ApplicationContext对象,然后去获取需要的service 或者 dao。

    @Service注解,将自动注册到Spring容器,不需要再在applicationContext.xml文件定义bean了,类似的还包括@Component、@Repository、@Controller。

    ApplicationContext又是spring管理bean的容器,加载配置文件的时候,就会将Spring管理的类都实例化。所以就能够注入到该实例。

    public class UDPService {    private ApplicationContext applicationContext=SpringUtils.getApplicationContext();    private UserServiceImpl userService=applicationContext.getBean(UserServiceImpl.class);    public void startSocketServer() throws Exception {        DatagramSocket ds = new DatagramSocket(10000);        while (true) {            // 2.创建数据包            byte[] buf = new byte[1024];            DatagramPacket dp = new DatagramPacket(buf, buf.length);             // 3.使用接受方法将数据存储到数据包中            ds.receive(dp);// 阻塞式的             // 4.通过数据包对象的方法,解析其中的数据 数据内容        //    String ip = dp.getAddress().getHostAddress();        //    int port = dp.getPort();             String text = new String(dp.getData(), 0, dp.getLength());             System.out.println(""+text.length());            System.out.println(""+text);           // byte[] data = dp.getData();             String[] split = text.split("#");            System.out.println(split[0]);            userService.updateUser(split[0],split[1]);            Thread.sleep(3000L);         }     }}@SpringBootApplication@MapperScan("com.example.net.udpservicertest.mapper")@ComponentScan("com.example.net.udpservicertest")public class UdpServicerTestApplication {     public static void main(String[] args) throws Exception {        SpringApplication.run(UdpServicerTestApplication.class, args);        new Thread(()->{             try {                UDPService udpService = new UDPService();                udpService.startSocketServer();             } catch (Exception e) {                e.printStackTrace();            }        }).start();     } }

    头疼的问题终于解决了!开心~

    springboot 普通类怎么使用注入

    需要自定义方法:

    package com.example.demo.util;import org.springframework.beans.BeansException;import org.springframework.beans.factory.NoSuchBeanDefinitionException;import org.springframework.context.ApplicationContext;import org.springframework.context.ApplicationContextAware;import org.springframework.stereotype.Component;@Componentpublic class SpringUtil implements ApplicationContextAware {    private static ApplicationContext applicationContext = null;    public SpringUtil() {    }    public void setApplicationContext(ApplicationContext arg0) throws BeansException {        if (applicationContext == null) {            applicationContext = arg0;        }    }    public static ApplicationContext getApplicationContext() {        return applicationContext;    }    public static void setAppCtx(ApplicationContext WEBAppCtx) {        if (webAppCtx != null) {            applicationContext = webAppCtx;        }    }        public static <T> T getBean(Class<T> clazz) {        return getApplicationContext().getBean(clazz);    }    public static <T> T getBean(String name, Class<T> clazz) throws ClassNotFoundException {        return getApplicationContext().getBean(name, clazz);    }    public static final Object getBean(String beanName) {        return getApplicationContext().getBean(beanName);    }    public static final Object getBean(String beanName, String className) throws ClassNotFoundException {        Class clz = Class.forName(className);        return getApplicationContext().getBean(beanName, clz.getClass());    }    public static boolean containsBean(String name) {        return getApplicationContext().containsBean(name);    }    public static boolean isSingleton(String name) throws NoSuchBeanDefinitionException {        return getApplicationContext().isSingleton(name);    }    public static Class<?> getType(String name) throws NoSuchBeanDefinitionException {        return getApplicationContext().getType(name);    }    public static String[] getAliases(String name) throws NoSuchBeanDefinitionException {        return getApplicationContext().getAliases(name);    }}

    使用:

    package com.example.demo.util;import com.example.demo.Controller.login.JwtAuthenticator;import com.example.demo.Dao.userandroleandpermissionDao.HRUserDao;import com.example.demo.Entity.userandroleandpermission.HRUser;import org.apache.shiro.SecurityUtils;import org.apache.shiro.subject.Subject;public class MethodUtils {    public HRUser findUserByToken(){        Subject subject = SecurityUtils.getSubject();        String token = subject.getPrincipal().toString();        String code = JwtAuthenticator.getUsername(token);        HRUserDao hrUserDao = SpringUtil.getBean(HRUserDao.class);//此处根据类.class来获取bean        HRUser user = hrUserDao.findByCode(code);        if(user != null){            return user;        }else{            return  null;        }    }}

    到此,相信大家对“Springboot怎么在普通类型注入Service或mapper”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

    --结束END--

    本文标题: Springboot怎么在普通类型注入Service或mapper

    本文链接: https://lsjlt.com/news/305641.html(转载时请注明来源链接)

    有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

    猜你喜欢
    • Springboot 在普通类型注入Service或mapper
      目录Springboot 在普通类型注入Service或mapper1.由于之前都是通过controller调用service层来实现访问2.在拿到数据之后,掉service时出现空...
      99+
      2024-04-02
    • Springboot怎么在普通类型注入Service或mapper
      本篇内容主要讲解“Springboot怎么在普通类型注入Service或mapper”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Springboot怎么在普通类型注入Service或mappe...
      99+
      2023-06-25
    • java怎么实现在普通类中注入service或mapper
      这篇文章主要讲解了“java怎么实现在普通类中注入service或mapper”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“java怎么实现在普通类中注入service或mapper”吧!普...
      99+
      2023-06-20
    • java实现在普通类中注入service或mapper
      普通类中注入service或mapper 1、类加@Component注解 2、注入需要引入的service @Autowired private UserService...
      99+
      2024-04-02
    • Java实现普通类注入service对象
      普通类注入service对象 找了很多办法,无论是加@Component还是编写工具类实现ApplicationContextAware,始终为null。 最后使用这两行代码解决: ...
      99+
      2024-04-02
    • 怎么在Netty中注解使用Service或者Mapper
      这篇文章主要介绍了怎么在Netty中注解使用Service或者Mapper,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。Netty注解使用Service或MapperSpri...
      99+
      2023-06-29
    • SpringBoot项目怎么将Bean注入到普通类中
      这篇文章主要讲解了“SpringBoot项目怎么将Bean注入到普通类中”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“SpringBoot项目怎么将Bean注入到普通类中”吧!如何将Bean...
      99+
      2023-06-25
    • 解决SpringMvc中普通类注入Service为null的问题
      SpringMvc中普通类注入Service为null 场景: 使用Quartz定时器时,普通的java类需要注入spring的service类,在调用时报错! 解决方式: ...
      99+
      2024-04-02
    • SpringBoot项目如何将Bean注入到普通类中
      目录如何将Bean注入到普通类中Spring管理的类获得一个注入的Bean方式非Spring管理的类获得一个注入的Bean方式普通类中通过ApplicationContext上下文获...
      99+
      2024-04-02
    • 如何解决SpringMvc中普通类注入Service为null的问题
      本篇内容介绍了“如何解决SpringMvc中普通类注入Service为null的问题”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!Sprin...
      99+
      2023-06-20
    • springboot中怎么通过main方法调用service或dao
      这篇文章主要介绍“springboot中怎么通过main方法调用service或dao”,在日常操作中,相信很多人在springboot中怎么通过main方法调用service或dao问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作...
      99+
      2023-06-29
    • springboot实现在工具类(util)中调用注入service层方法
      一、新建BeanUtil类 import lombok.extern.slf4j.Slf4j; import org.springframework.beans.BeansExc...
      99+
      2024-04-02
    • springboot怎么手动动态注入controller和service
      这篇文章主要介绍“springboot怎么手动动态注入controller和service”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“springboot怎么手动动态注入controller和se...
      99+
      2023-06-29
    • SpringBoot怎么在线程中获取@Service Bean类
      这篇文章主要为大家展示了“SpringBoot怎么在线程中获取@Service Bean类”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“SpringBoot怎么在线程中获取@Servi...
      99+
      2023-06-29
    • SpringBoot Test类注入失败怎么办
      这篇文章将为大家详细讲解有关SpringBoot Test类注入失败怎么办,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。如下所示本来 bookService的引用一直是null。导致每次测试都报空指针异常...
      99+
      2023-06-06
    • Spring中@Value注入复杂类型怎么用
      这篇文章主要为大家展示了“Spring中@Value注入复杂类型怎么用”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Spring中@Value注入复杂类型怎么用”这篇文章吧。为什么用,分割的字符...
      99+
      2023-06-22
    • SpringBoot 测试类无法自动注入@Autowired怎么办
      小编给大家分享一下SpringBoot 测试类无法自动注入@Autowired怎么办,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!原来的测试类的注解:@RunWith(SpringRunner.class)@SpringB...
      99+
      2023-06-06
    • 怎么在springboot中实现枚举类型的传递
      本篇文章为大家展示了怎么在springboot中实现枚举类型的传递,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。首先先建立一个枚举类:public enum ScoreType&...
      99+
      2023-06-14
    • C#/VB.NET怎么实现在Word中插入或删除脚注
      本篇内容介绍了“C#/VB.NET怎么实现在Word中插入或删除脚注”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!程序环境本次测试时,在程序...
      99+
      2023-07-05
    • 在Spring-Boot中怎么使用@Value注解注入集合类
      这篇文章主要讲解了“在Spring-Boot中怎么使用@Value注解注入集合类”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“在Spring-Boot中怎么使用@Value注解注入集合类”吧...
      99+
      2023-06-20
    软考高级职称资格查询
    编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
    • 官方手机版

    • 微信公众号

    • 商务合作