dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README.md 5.3 KiB

il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 10 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 9 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 10 ans
il y a 10 ans
il y a 8 ans
il y a 10 ans
il y a 10 ans
il y a 10 ans
il y a 8 ans
il y a 10 ans
il y a 8 ans
il y a 10 ans
il y a 10 ans
il y a 10 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 9 ans
il y a 8 ans
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # Weixin Java Tools 微信公众号/企业号开发Java SDK
  2. =====================================
  3. [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.binarywang/weixin-java-mp/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.binarywang/weixin-java-mp)
  4. [![Build Status](https://travis-ci.org/wechat-group/weixin-java-tools.svg?branch=develop)](https://travis-ci.org/wechat-group/weixin-java-tools) [![Join QQ Group](http://pub.idqqimg.com/wpa/images/group.png)](http://jq.qq.com/?_wv=1027&k=40lRskK)
  5. ### 注意:
  6. 1. ***本项目Fork自chanjarster/weixin-java-tools,但由于原项目已停止维护,故单独维护和发布,且发布到maven上的groupId也会不同,详细信息见下文。***
  7. 1. ***自2.0.0版本以来,公众号的接口调整比较大,主要是为了解决主接口类过于庞大不方便管理的问题,将接口实现代码按模块进行拆分。***
  8. 1. 本SDK要求的最低JDK版本是7,为满足少量还在使用JDK6的用户的需求,特意抽出独立的代码分支项目,请参考 https://github.com/binarywang/weixin-java-tools-for-jdk6 ,其他更早的JDK版本则需要自己改造实现;
  9. 1. 最新更新:2016-10-31 发布2.3.0正式版!
  10. ===========
  11. ## 开发交流方式及注意事项:
  12. 1. QQ群:343954419 [![Join QQ Group](http://pub.idqqimg.com/wpa/images/group.png)](http://jq.qq.com/?_wv=1027&k=40lRskK)
  13. 1. 微信群: 因微信群已达到100人限制,故如有想加入微信群的,请入QQ群后联系管理员,提供微信号以便邀请加入;
  14. 1. 新手提问前,请先阅读此文章:http://t.cn/RV93MRB
  15. 1. 寻求帮助时需贴代码或大长串异常信息的,请利用http://paste.ubuntu.com
  16. 1. 有功能需求或由于微信官方接口调整导致的代码问题,可以直接提出issue,便于讨论追踪问题;
  17. 1. 详细开发文档请看 [Wiki](https://github.com/wechat-group/weixin-java-tools/wiki),部分文档可能未能及时更新,如有发现,可以及时上报或者自行修改。
  18. 1. 微信公众号官方文档入口地址:http://mp.weixin.qq.com/wiki (注意,从网上搜到的文档有的虽然地址前面跟这个一样,但明显左侧菜单不一致,是旧的文档,注意不要看错了文档)。
  19. ===========
  20. ## 版本说明
  21. 1. 本项目定为每月发布一次正式版,版本号格式为X.X.0(如2.1.0,2.2.0等),月初或月底发布新版本,遇到重大问题需修复会及时提交新版本,欢迎大家随时提交Pull Request;
  22. 1. BUG修复和新特性一般会先发布成小版本作为临时版本(如2.0.1,2.0.2等,即尾号不为0,以区别于正式版);
  23. 1. 目前最新版本号为 ![Maven Central](https://img.shields.io/maven-central/v/com.github.binarywang/weixin-java-parent.svg) ,也可以通过访问链接 [【公众号】](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.binarywang%22%20AND%20a%3A%22weixin-java-mp%22) 、[【企业号】](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.binarywang%22%20AND%20a%3A%22weixin-java-cp%22)
  24. 分别查看所有最新的版本。
  25. ## Maven & Gradle
  26. * 公众号(订阅号、服务号):
  27. maven:
  28. ```xml
  29. <dependency>
  30. <groupId>com.github.binarywang</groupId>
  31. <artifactId>weixin-java-mp</artifactId>
  32. <version>2.3.0</version>
  33. </dependency>
  34. ```
  35. gradle:
  36. ```groovy
  37. compile 'com.github.binarywang:weixin-java-mp:2.3.0'
  38. ```
  39. * 企业号:
  40. maven:
  41. ```xml
  42. <dependency>
  43. <groupId>com.github.binarywang</groupId>
  44. <artifactId>weixin-java-cp</artifactId>
  45. <version>2.3.0</version>
  46. </dependency>
  47. ```
  48. gradle:
  49. ```groovy
  50. compile 'com.github.binarywang:weixin-java-cp:2.3.0'
  51. ```
  52. ===========
  53. #### 本项目主要存放在github上,地址为 :
  54. * https://github.com/wechat-group/weixin-java-tools
  55. * ===========但同时会在其他几个网站同步更新,地址分别是:
  56. * https://bitbucket.org/binarywang/weixin-java-tools
  57. * http://git.oschina.net/binary/weixin-java-tools
  58. * https://git.coding.net/binarywang/weixin-java-tools.git
  59. ===========
  60. ## 目前可参考的Demo项目有三个(目前都是公众号的,风格不同,欢迎提供更多的demo供新手参考):
  61. 1. https://github.com/wechat-group/weixin-mp-demo
  62. 1. https://github.com/wechat-group/weixin-mp-demo-springboot
  63. 1. https://github.com/wechat-group/weixin-java-tools-springmvc
  64. ===========
  65. ## 关于代码贡献
  66. 1. 非常欢迎和感谢对本项目发起Pull Request的同学,本项目代码风格为使用2个空格代表一个Tab,因此在提交代码时请注意一下,否则很容易在IDE格式化代码后与原代码产生大量diff,这样会给其他人阅读代码带来极大的困扰。
  67. 1. 为了便于设置,本项目引入editorconfig插件,请使用eclipse的同学在贡献代码前安装相关插件,IntelliJ IDEA则自带支持,无需额外安装插件。
  68. 1. 本项目可以采用两种方式接受代码贡献:
  69. 1. 第一种就是基于[Git Flow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)开发流程,因此在发起Pull Request的时候请选择develop分支。
  70. 1. 另外一种贡献代码的方式就是加入SDK Developers开发组,前提是对自己的代码足够自信就可以申请加入,加入之后可以随时直接提交代码,但要注意对所做的修改或新增的代码进行单元测试,保证提交代码没有明显问题,具体加入方式,请咨询管理员。