zoukankan      html  css  js  c++  java
  • ssm项目中bean注入失败,获取spring中指定bean之解决方案

    在项目开发中遇到一个问题,项目中使用了一个开源项目Quartz

    (Quartz是一个完全由Java编写的开源作业调度框架,为在Java应用程序中进行作业调度提供了简单却强大的机制。Quartz允许开发人员根据时间间隔来调度作业。这是百度的)。

    具体业务就是在特定的时间去操作数据,但是这个时间属性是由前台传递给后台的。

    因此在Quartz的实现类在特定的时间需要使用Service接口,来修改数据库的数值,

    因此一开始我在Quartz的实现类中直接使用了@AUTOWIRED来进行注入;

    不过测试了几次之后发现,注入的serviceimpl都报了空指针错误!也就是说并没有将service的实现成功注入;

    后来一想,因为我调用Quartz的实现的时候是通过他的框架来进行工作;

    接口提供的方法是传递Quartz的实现的CLASS,所以Quartz实现类的对象在内存中应该是不受Spring控制的,所以其中调用的service接口也不受spring控制,故此注入失败,

    解决方法1:

        加入一个springBean管理工具:

    package com.lewkay.demo.util;
    
    import org.springframework.beans.BeansException;
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.ApplicationContextAware;
    
    import java.util.Map;
    
    /**
     * Spring bean获取工具类
     * Created by lk on 2017/2/16.
     */
    public class SpringBeanFactoryUtils implements ApplicationContextAware {
    
        private static ApplicationContext applicationContext;
    
    
        @Override
        public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
            this.applicationContext = applicationContext;
        }
    
        /**
         * 获取applicationContext对象
         * @return
         */
        public static ApplicationContext getApplicationContext(){
            return applicationContext;
        }
    
        /**
         * 根据bean的id来查找对象
         * @param id
         * @return
         */
        public static Object getBeanById(String id){
            return applicationContext.getBean(id);
        }
    
        /**
         * 根据bean的class来查找对象
         * @param c
         * @return
         */
        public static Object getBeanByClass(Class c){
            return applicationContext.getBean(c);
        }
    
        /**
         * 根据bean的class来查找所有的对象(包括子类)
         * @param c
         * @return
         */
        public static Map getBeansByClass(Class c){
            return applicationContext.getBeansOfType(c);
        }
    }
    

      后面,在任何不受spring管理的类中都可以使用此工具获取受spring管理的bean了

    写的比较水,见谅!

  • 相关阅读:
    Eclipse报错:pom.xml web.xml is missing and <fainOnMissingWebXml> is set to true
    WebStrom之React Native之HelloWord 【Windows】
    React Native报错:This error often happens when you’re running the packager (local dev server) from a wrong folder
    'adb' 不是内部或外部命令,也不是可运行的程序 或批处理文件。【Windows】
    Spring Boot项目部署到tomcat启动失败404
    Codeforces Beta Round #51 D. Beautiful numbers 数位DP
    UOJ 34 FFT
    POJ 2773 容斥原理
    HTPJ 1268 GCD
    HDOJ 2082 生成函数
  • 原文地址:https://www.cnblogs.com/lewskay/p/6408522.html
Copyright © 2011-2022 走看看