工具类中怎么注入service,spring mvc +mybatiss
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了工具类中怎么注入service,spring mvc +mybatiss相关的知识,希望对你有一定的参考价值。
注入总是为空,不知道该怎么配
参考技术A /*** 封装Spring ApplicationConext引用, 方便工程通过API获取bean实例
* @author bjb-336
*
*/
@Component
public class SpringContextWrapper implements ApplicationContextAware
private static ApplicationContext appContext;
/**
* 根据beanName 获取bean实例
* @param beanName
* @return
*/
public static Object getBean(String beanName)
Object obj = null;
if (null != appContext)
obj = appContext.getBean(beanName);
return obj;
/**
* 根据bean名称和类型进行获取Bean的实例
* @param beanName
* @param clsType
* @return
*/
public static <T> T getBean(String beanName, Class<T> clsType)
T obj = null;
if (null != appContext)
obj = appContext.getBean(beanName, clsType);
return obj;
/**
* 根据类型进行获取Bean的实例
* @param clsType
* @return
*/
public static <T> T getBean(Class<T> clsType)
T obj = null;
if (null != appContext)
obj = appContext.getBean(clsType);
return obj;
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException
SpringContextWrapper.appContext = applicationContext;
追问
这个工具类我写了,但是发现 appContext 是null,不知道怎么回事
追答框架的配置是不是没有配置完整,比如注解开启功能
这个问题解决了,现在还有一个问题,getbean获取不到service,配错了么?这是扫描service
包名可写到com.zzsn即可,
在service的实现类上写上面加上@Service("名称") 注解
已经找到问题了,非常感谢你的热心帮助!是我的认知错误,我认为getbean的参数名是service接口的名字,实际上上应该是实现层serviceimpl的名字
本回答被提问者采纳spring 通过注解实现工具类注入Service方法
在开发过程中,我们经常有碰到工具类里面,要执行CRUD操作,需要调用到Service实现类,这时可以通过下述方法来得到。
1注入@Component
在持久层、业务层和控制层中,分别采用@Repository、@Service和@Controller对分层中的类进行凝视;而用@Component对那些比较中立的类进行凝视。
【如下图:@Repository、@Service,@Controller,@Component在同一路径下,分别对不同类型的类进行凝视】
2注入@PostConstruct
通过@PostConstruct 和 @PreDestroy 方法 实现初始化和销毁bean之前进行的操作。
通过 步骤1:定义一个static 的工具类参数,步骤2 在用 @PostConstruct初始化中,把该静态参数实例化
```
@Component
public class SMSUtils {
@Autowired
private ISmsService smsService; //添加所需service的私有成员【不能加static,不然smsService会等于null,因为static方法是先于对象创建之前就已经加载的方法,先于构造执行,是属于类的方法】
private static SMSUtils smsUtils; // 步骤1 静态初使化 一个工具类 这样是为了在spring初使化之前
public static final String SMS_PHONE_CODE = "xxxxx";
public static final String SMS_REG_SUCCESS = "yyyyyy";
@PostConstruct
public void init() {
smsUtils = this;
smsUtils.smsService = this.smsService; //步骤2 初使化时将已静态化的testService实例化,即可以使用 smsUtils.smsService.smsServicelai 来调用service服务
}
//发送短信验证码 params 请严格按照模板输出的字段顺序来
public static void sendSms(String phone, String[] params, String templateCode) {
SmsResponse smsResponse = smsUtils.smsService.sendSms( phone, jsonStr, templateCode );
}
}
以上是关于工具类中怎么注入service,spring mvc +mybatiss的主要内容,如果未能解决你的问题,请参考以下文章