spring基于注解的普通类怎么调用@Services注解的service方法

时间:2021-08-08 14:40:34
[java] view plain copy print?
  1. spring基于注解的普通类怎么调用@Services注解的service方法,需要一些先决条件:  
  2. 1、如果你想用@autowired,那么这个类本身也应该是在spring的管理下的,即你的UserLogUtil也要标注为一个component(或Service),这样spring才知道要注入依赖;  
  3.   
  4. 2、或者,不标注为@Component的话,此时不能通过@autowired来注入依赖,只能通过ApplicationContext来取得标注为Service的类:  
  5. UserLogService service = ApplicationContext.getBean(UserLogService.class);  
spring基于注解的普通类怎么调用@Services注解的service方法