You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
562 B
23 lines
562 B
package com.ynxbd.common.config.matcher;
|
|
|
|
import com.soecode.wxtools.api.WxMessageMatcher;
|
|
import com.soecode.wxtools.bean.WxXmlMessage;
|
|
|
|
/**
|
|
* 示例:DemoMatcher匹配器
|
|
* 目的:拦截“在吗”的消息
|
|
*
|
|
* @author antgan
|
|
* @date 2016/12/15
|
|
*/
|
|
public class DemoMatcher implements WxMessageMatcher {
|
|
|
|
@Override
|
|
public boolean match(WxXmlMessage message) {
|
|
//拦截“在吗”的消息,true通行;false拦截
|
|
if ("在吗".equals(message.getContent())) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|