若依 quartz 定时任务中 service mapper无法注入解决办法

本文介绍了在 Ruoyi Quartz 定时任务中遇到 Service 和 Mapper 无法注入的问题,并提供了具体的解决方案。通过修改 SpringContextUtil.java 文件,确保在任务方法内部能正确地使用依赖注入。

 上图为任务代码,在任务具体执行的方法中使用,一定要写在方法内使用

SpringContextUtil.getBean()方法实例化Spring service类

下边是ruoyi-quartz模块中util/SpringContextUtil.java(已改写)

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

/**
 * spring管理环境中获取bean
 * 
 * @author yangzz
 */
@Service("springContextUtil")
public class SpringContextUtil implements ApplicationContextAware
{
    // Spring应用上下文环境
    private static ApplicationContext applicationContext;

    /**
     * 实现ApplicationContextAware接口的回调方法,设置上下文环境
     * 
     * @param applicationContext
     */
    @Override
    public void setApplicationContext(ApplicationContext applicationContext)
    {
        SpringContextUtil.applicationContext = applicatio
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值