spring基于注解的 普通类怎么调用(@Services)注解的service方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring基于注解的 普通类怎么调用(@Services)注解的service方法相关的知识,希望对你有一定的参考价值。
public class UserLogUtil
@Autowired
private static UserLogService userLogService;
/**
* 记录用户日志
* @param userId
* @param toolName
*/
public static void wirteLog(Integer userId,String toolName,String url)
UserLog log = new UserLog();
log.setUserId(userId);
log.setToolName(toolName);
log.setUrl(url.substring(1,url.length()));
userLogService.save(log);
2、或者,不标注为component的话,此时不能通过@autowired来注入依赖,只能通过ApplicationContext来取得标注为Service的类:
UserLogService service = ApplicationContext.getBean(UserLogService.class); 参考技术A 只有把UserLogUtil 类也交给spring管理才能行,调用方法就如你代码所写的,直接注入就好了 参考技术B UserLogUtil 类加上一个注解@component 参考技术C 你用的就对
spring常用注解使用解析
spring没有采用约定优于配置的策略,spring要求显示指定搜索哪些路径下的Java文件。spring将会把合适的java类全部注册成spring Bean。
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <!-- 自动扫描指定包及其子包下的所有Bean类 --> <context:component-scan base-package="org.crazyit.app.service"/> </beans>
<!-- 自动扫描指定包及其子包下的所有Bean类 --> <context:component-scan base-package="org.crazyit.app.service"> <!-- 只将以Chinese、Axe结尾的类当成Spring容器中的Bean --> <context:include-filter type="regex" expression=".*Chinese"/> <context:include-filter type="regex" expression=".*Axe"/> </context:component-scan>
@Controller public class demo { @Resource(name="user") private User user; @Resource(name="user") public void setUser(User user) { this.user = user; } public User getUser() { return user; } }
@Controller("demo") @Scope("prototype") public class demo { }
@Component public class SteelAxe { public SteelAxe() { System.out.println("创建SteelAxe类对象实例..."); } }
@Component public class Chinese { // 执行Field注入 @Resource(name="steelAxe") private SteelAxe steeAxe; public Chinese() { super(); System.out.println("创建Chinese类对象实例..."); } @PostConstruct public void init() { System.out.println("正在执行初始化的init方法..."); } @PreDestroy public void close() { System.out.println("正在执行销毁之前的close方法..."); } }
// 创建Spring容器 AbstractApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); // 注册关闭钩子 ctx.registerShutdownHook();
创建Chinese类对象实例...
创建SteelAxe类对象实例...
正在执行初始化的init方法...
正在执行销毁之前的close方法...
@Component public class Chinese { // 执行Field注入 //@Resource(name="steelAxe") //private SteelAxe steeAxe; public Chinese() { super(); System.out.println("创建Chinese类对象实例..."); } @PostConstruct public void init() { System.out.println("正在执行初始化的init方法..."); } @PreDestroy public void close() { System.out.println("正在执行销毁之前的close方法..."); } }
创建Chinese类对象实例...
正在执行初始化的init方法...
创建SteelAxe类对象实例...
正在执行销毁之前的close方法.
以上是关于spring基于注解的 普通类怎么调用(@Services)注解的service方法的主要内容,如果未能解决你的问题,请参考以下文章
在SpringBoot用普通类调用Spring管理的Bean
JAVA普通类怎么注入Spring的bean 例如 一个普通的JAVA类 我想引入一个dao层的入库方法。最好用注解方式