File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
weixin-java-cp/src/test/java/me/chanjar/weixin/cp Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 38
38
</table >
39
39
40
40
### 重要信息
41
- 1 . ** 2020-11-29 发布 [ 【4.0 .0正式版】] ( https://mp.weixin.qq.com/s/OPoICwLifOZGVN_ZX_BBhw ) ** !
41
+ 1 . ** 2021-06-02 发布 [ 【4.1 .0正式版】] ( https://mp.weixin.qq.com/s/nIk_xOf6dxkhKfqq830Cuw ) ** !
42
42
1 . 新手重要提示:本项目仅是一个SDK开发工具包,未提供Web实现,建议使用 ` maven ` 或 ` gradle ` 引用本项目即可使用本SDK提供的各种功能,详情可参考 ** [ 【Demo项目】] ( demo.md ) ** 或本项目中的部分单元测试代码;另外微信开发新手请务必阅读[ 【开发文档 Wiki 首页】] ( https://github.com/Wechat-Group/WxJava/wiki ) 的常见问题部分,可以少走很多弯路,节省不少时间。
43
43
1 . 技术交流群:想获得QQ群/微信群/钉钉企业群等信息的同学,请使用微信扫描上面的微信公众号二维码关注 ` WxJava ` 后点击相关菜单即可获取加入方式,同时也可以在微信中搜索 ` weixin-java-tools ` 或 ` WxJava ` 后选择正确的公众号进行关注,该公众号会及时通知SDK相关更新信息,并不定期分享微信Java开发相关技术知识;
44
44
1 . 钉钉技术交流群: ` 30294972 ` (技术交流群),` 35724728 ` (通知群,实时通知Github项目变更记录)。
67
67
<dependency >
68
68
<groupId >com.github.binarywang</groupId >
69
69
<artifactId >(不同模块参考下文)</artifactId >
70
- <version >4.0 .0</version >
70
+ <version >4.1 .0</version >
71
71
</dependency >
72
72
```
73
73
Original file line number Diff line number Diff line change 7
7
import me .chanjar .weixin .cp .tp .message .WxCpTpMessageHandler ;
8
8
import me .chanjar .weixin .cp .tp .message .WxCpTpMessageRouter ;
9
9
import me .chanjar .weixin .cp .tp .service .WxCpTpService ;
10
+ import me .chanjar .weixin .cp .tp .service .impl .WxCpTpServiceApacheHttpClientImpl ;
10
11
import me .chanjar .weixin .cp .tp .service .impl .WxCpTpServiceImpl ;
11
12
import org .testng .annotations .Test ;
12
13
@@ -21,7 +22,7 @@ public class WxCpTpMessageRouterTest {
21
22
22
23
@ Test
23
24
public void testMessageRouter () {
24
- WxCpTpService service = new WxCpTpServiceImpl ();
25
+ WxCpTpService service = new WxCpTpServiceApacheHttpClientImpl ();
25
26
WxCpTpMessageRouter router = new WxCpTpMessageRouter (service );
26
27
27
28
String xml = "<xml>\n " +
Original file line number Diff line number Diff line change 30
30
public class WxCpTpTagServiceImplTest {
31
31
32
32
@ Mock
33
- private WxCpTpServiceImpl wxCpTpService ;
33
+ private WxCpTpServiceApacheHttpClientImpl wxCpTpService ;
34
34
35
35
private WxCpTpConfigStorage configStorage ;
36
36
You can’t perform that action at this time.
0 commit comments