现在要实现一个定时任务,发送微信模板消息,但是task要怎么调用TplService呢
dubbo注入不了吗?
现有结构是,都是WEB模块调用其他微服务,没有其他微服务调用WEB的SERVICE
那这个service就不应该放在web模块
因为要调用WxTemplateMsgApi.class
template_send(String touser, String template_id, String url, Map<String, WxTemplateData> data)
里头的这个方法,这个是在
<nutz.version>1.r.68-SNAPSHOT</nutz.version>
这个包里面都不能直接调用了哈
web就不该直接调用这个, 放在微信模块,封装个service
明白了,我去试一下