-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1730 from Wechat-Group/develop
合并develop分支,发布最新正式版
- Loading branch information
Showing
467 changed files
with
12,365 additions
and
3,981 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.github.binarywang</groupId> | ||
<artifactId>wx-java</artifactId> | ||
<version>3.8.0</version> | ||
<version>3.9.0</version> | ||
<packaging>pom</packaging> | ||
<name>WxJava - Weixin/Wechat Java SDK</name> | ||
<description>微信开发Java SDK</description> | ||
|
@@ -90,6 +90,11 @@ | |
<email>[email protected]</email> | ||
<url>https://github.com/howardliu-cn</url> | ||
</developer> | ||
<developer> | ||
<name>huangxiaoming</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/huangxm129</url> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
|
@@ -111,8 +116,8 @@ | |
</modules> | ||
|
||
<properties> | ||
<maven.compiler.source>1.7</maven.compiler.source> | ||
<maven.compiler.target>1.7</maven.compiler.target> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<httpclient.version>4.5</httpclient.version> | ||
|
@@ -126,11 +131,10 @@ | |
<artifactId>qrcode-utils</artifactId> | ||
<version>1.1</version> | ||
</dependency> | ||
<!-- 由于jodd-http较新的3.8版本需要jdk8,故而此处采用较低版本 --> | ||
<dependency> | ||
<groupId>org.jodd</groupId> | ||
<artifactId>jodd-http</artifactId> | ||
<version>5.1.4</version> | ||
<version>5.1.6</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
|
@@ -239,7 +243,7 @@ | |
<dependency> | ||
<groupId>redis.clients</groupId> | ||
<artifactId>jedis</artifactId> | ||
<version>2.9.0</version> | ||
<version>3.3.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...rter/src/main/java/com/binarywang/spring/starter/wxjava/miniapp/enums/HttpClientType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.binarywang.spring.starter.wxjava.miniapp.enums; | ||
|
||
/** | ||
* httpclient类型. | ||
* | ||
* @author <a href="https://github.com/binarywang">Binary Wang</a> | ||
* @date 2020-05-25 | ||
*/ | ||
public enum HttpClientType { | ||
/** | ||
* HttpClient. | ||
*/ | ||
HttpClient, | ||
/** | ||
* OkHttp. | ||
*/ | ||
OkHttp, | ||
/** | ||
* JoddHttp. | ||
*/ | ||
JoddHttp, | ||
} |
22 changes: 22 additions & 0 deletions
22
...starter/src/main/java/com/binarywang/spring/starter/wxjava/miniapp/enums/StorageType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.binarywang.spring.starter.wxjava.miniapp.enums; | ||
|
||
/** | ||
* storage类型. | ||
* | ||
* @author <a href="https://github.com/binarywang">Binary Wang</a> | ||
* @date 2020-05-25 | ||
*/ | ||
public enum StorageType { | ||
/** | ||
* 内存. | ||
*/ | ||
Memory, | ||
/** | ||
* redis(JedisClient). | ||
*/ | ||
Jedis, | ||
/** | ||
* redis(RedisTemplate). | ||
*/ | ||
RedisTemplate | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.