gpt4 book ai didi

解决SpringMvc中普通类注入Service为null的问题

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章解决SpringMvc中普通类注入Service为null的问题由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

SpringMvc中普通类注入Service为null

场景:

使用Quartz定时器时,普通的java类需要注入spring的service类,在调用时报错.

解决方式:

?
1
2
3
4
5
6
/**
  * 定时获取课程的service
  */
@Autowired
protected QuartzGetCourseService quartzGetCourseService = (QuartzGetCourseService) SpringContextUtil
         .getBean( "quartzGetCourseService" );
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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;
 
/**
  * 在Spring 注解中,普通类获取@Service标记的方法或者bean对象
  *
  */
@Component
public class SpringContextUtil implements ApplicationContextAware {
     private static ApplicationContext applicationContext = null ;
 
     @Override
     public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
         SpringContextUtil.applicationContext = applicationContext;
     }
 
     public static ApplicationContext getApplicationContext() {
         return applicationContext;
     }
 
     /**
      * 注意 bean name默认 = 类名(首字母小写) 例如: A8sClusterDao = getBean("a8sClusterDao")
      *
      * @param name
      * @return
      * @throws BeansException
      */
     public static Object getBean(String name) throws BeansException {
         return applicationContext.getBean(name);
     }
 
     /**
      * 根据类名获取到bean
      *
      * @param <T>
      * @param clazz
      * @return
      * @throws BeansException
      */
     @SuppressWarnings ( "unchecked" )
     public static <T> T getBeanByName(Class<T> clazz) throws BeansException {
         try {
             char [] cs = clazz.getSimpleName().toCharArray();
             cs[ 0 ] += 32 ; // 首字母大写到小写
             return (T) applicationContext.getBean(String.valueOf(cs));
         }
         catch (Exception e) {
             e.printStackTrace();
             return null ;
         }
     }
 
     public static boolean containsBean(String name) {
         return applicationContext.containsBean(name);
     }
 
     public static boolean isSingleton(String name) throws NoSuchBeanDefinitionException {
         return applicationContext.isSingleton(name);
     }
}

调用结束,测试可以获取Service. 。

spring之工具类使用service注入

一般需要在一个工具类中使用@Autowired 注解注入一个service。但是由于工具类方法一般都写成static,所以直接注入就存在问题.

栗子

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@Component
public class SmsController {   
     private static Logger logger = LoggerFactory.getLogger(SmsController. class );   
     @Autowired
     private MessagesInfoService messagesInfoService; 
     private static SmsController smsController;    
      
     @PostConstruct
     public void init() { 
         smsController = this
         smsController.messagesInfoService = this .messagesInfoService;   
    
  
     /**
      *短信历史查询接口(查询某个时间段发送的短信)
      */
     @RequestMapping (value = "/queryMessage" ,method = RequestMethod.GET)
     public ModelAndView queryMessage{
         pager = messagesInfoService.findPager(map, 5 ,pIndex);
         ModelAndView modelAndView = new ModelAndView( "manage/jgdxgl/jgdx_qm" );
         List<MessagesInfo> list = pager.getItem();
         modelAndView.addObject( "pager" ,pager);
         modelAndView.addObject( "list" ,list);
         return modelAndView
     }     
}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我.

原文链接:https://blog.csdn.net/u011429743/article/details/81111151 。

最后此篇关于解决SpringMvc中普通类注入Service为null的问题的文章就讲到这里了,如果你想了解更多关于解决SpringMvc中普通类注入Service为null的问题的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com