快速注册service服务
一.通过SpringContextHolder的getBean来注册service服务
导入的包:
import com.bessky.platform.context.SpringContextHolder;
代码
ProductService productService = SpringContextHolder.getBean("productService", ProductService.class);
int count = productService.queryChildCategoryClicksCount(condition);
二.通过Servlet Context来注册Service服务
导入的包
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
代码
private FTPFileService ftpFileService; public void init() throws ServletException { ServletContext servletContext = this.getServletContext(); WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(servletContext); this.ftpFileService = ctx.getBean("ftpFileService", FTPFileService.class); }
* 博客文章部分截图及内容来自于学习的书本及相应培训课程,仅做学习讨论之用,不做商业用途。
* 如有侵权,马上联系我,我立马删除对应链接。
* 备注:王子威
* 我的网易邮箱:wzw_1314_520@163.com