Skip to content

Commit 4ea5f12

Browse files
committed
⬆️ 升级spring boot版本
1 parent d19dfc2 commit 4ea5f12

21 files changed

+22
-22
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>2.1.7.RELEASE</version>
9+
<version>2.6.7</version>
1010
</parent>
1111

1212
<groupId>com.github.binarywang</groupId>
@@ -20,7 +20,7 @@
2020
<properties>
2121
<weixin-java-mp.version>4.3.0</weixin-java-mp.version>
2222

23-
<java.version>14</java.version>
23+
<java.version>8</java.version>
2424
<!-- <maven.compiler.source>1.8</maven.compiler.source>-->
2525
<!-- <maven.compiler.target>1.8</maven.compiler.target>-->
2626
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>

src/main/java/com/github/binarywang/demo/wx/mp/WxMpDemoApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import org.springframework.boot.autoconfigure.SpringBootApplication;
55

66
/**
7-
* @author Binary Wang(https://github.com/binarywang)
7+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
88
*/
99
@SpringBootApplication
1010
public class WxMpDemoApplication {

src/main/java/com/github/binarywang/demo/wx/mp/builder/AbstractBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import org.slf4j.LoggerFactory;
88

99
/**
10-
* @author Binary Wang(https://github.com/binarywang)
10+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1111
*/
1212
public abstract class AbstractBuilder {
1313
protected final Logger logger = LoggerFactory.getLogger(getClass());

src/main/java/com/github/binarywang/demo/wx/mp/builder/ImageBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import me.chanjar.weixin.mp.bean.message.WxMpXmlOutMessage;
77

88
/**
9-
* @author Binary Wang(https://github.com/binarywang)
9+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1010
*/
1111
public class ImageBuilder extends AbstractBuilder {
1212

src/main/java/com/github/binarywang/demo/wx/mp/builder/TextBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import me.chanjar.weixin.mp.bean.message.WxMpXmlOutTextMessage;
77

88
/**
9-
* @author Binary Wang(https://github.com/binarywang)
9+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1010
*/
1111
public class TextBuilder extends AbstractBuilder {
1212

src/main/java/com/github/binarywang/demo/wx/mp/config/WxMpConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* wechat mp configuration
3030
*
31-
* @author Binary Wang(https://github.com/binarywang)
31+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
3232
*/
3333
@AllArgsConstructor
3434
@Configuration

src/main/java/com/github/binarywang/demo/wx/mp/config/WxMpProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* wechat mp properties
1111
*
12-
* @author Binary Wang(https://github.com/binarywang)
12+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1313
*/
1414
@Data
1515
@ConfigurationProperties(prefix = "wx.mp")

src/main/java/com/github/binarywang/demo/wx/mp/controller/WxMenuController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import static me.chanjar.weixin.common.api.WxConsts.MenuButtonType;
2020

2121
/**
22-
* @author Binary Wang(https://github.com/binarywang)
22+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
2323
*/
2424
@AllArgsConstructor
2525
@RestController

src/main/java/com/github/binarywang/demo/wx/mp/controller/WxPortalController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import me.chanjar.weixin.mp.bean.message.WxMpXmlOutMessage;
2222

2323
/**
24-
* @author Binary Wang(https://github.com/binarywang)
24+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
2525
*/
2626
@Slf4j
2727
@AllArgsConstructor

src/main/java/com/github/binarywang/demo/wx/mp/handler/AbstractHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import org.slf4j.LoggerFactory;
66

77
/**
8-
* @author Binary Wang(https://github.com/binarywang)
8+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
99
*/
1010
public abstract class AbstractHandler implements WxMpMessageHandler {
1111
protected Logger logger = LoggerFactory.getLogger(getClass());

src/main/java/com/github/binarywang/demo/wx/mp/handler/KfSessionHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.Map;
1010

1111
/**
12-
* @author Binary Wang(https://github.com/binarywang)
12+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1313
*/
1414
@Component
1515
public class KfSessionHandler extends AbstractHandler {

src/main/java/com/github/binarywang/demo/wx/mp/handler/LocationHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import static me.chanjar.weixin.common.api.WxConsts.XmlMsgType;
1313

1414
/**
15-
* @author Binary Wang(https://github.com/binarywang)
15+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1616
*/
1717
@Component
1818
public class LocationHandler extends AbstractHandler {

src/main/java/com/github/binarywang/demo/wx/mp/handler/LogHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import java.util.Map;
1111

1212
/**
13-
* @author Binary Wang(https://github.com/binarywang)
13+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1414
*/
1515
@Component
1616
public class LogHandler extends AbstractHandler {

src/main/java/com/github/binarywang/demo/wx/mp/handler/MenuHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import static me.chanjar.weixin.common.api.WxConsts.EventType;
1212

1313
/**
14-
* @author Binary Wang(https://github.com/binarywang)
14+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1515
*/
1616
@Component
1717
public class MenuHandler extends AbstractHandler {

src/main/java/com/github/binarywang/demo/wx/mp/handler/MsgHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import static me.chanjar.weixin.common.api.WxConsts.XmlMsgType;
1616

1717
/**
18-
* @author Binary Wang(https://github.com/binarywang)
18+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1919
*/
2020
@Component
2121
public class MsgHandler extends AbstractHandler {

src/main/java/com/github/binarywang/demo/wx/mp/handler/NullHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.Map;
1010

1111
/**
12-
* @author Binary Wang(https://github.com/binarywang)
12+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1313
*/
1414
@Component
1515
public class NullHandler extends AbstractHandler {

src/main/java/com/github/binarywang/demo/wx/mp/handler/ScanHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import me.chanjar.weixin.mp.bean.message.WxMpXmlOutMessage;
1212

1313
/**
14-
* @author Binary Wang(https://github.com/binarywang)
14+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1515
*/
1616
@Component
1717
public class ScanHandler extends AbstractHandler {

src/main/java/com/github/binarywang/demo/wx/mp/handler/StoreCheckNotifyHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* 门店审核事件处理
1313
*
14-
* @author Binary Wang(https://github.com/binarywang)
14+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1515
*/
1616
@Component
1717
public class StoreCheckNotifyHandler extends AbstractHandler {

src/main/java/com/github/binarywang/demo/wx/mp/handler/SubscribeHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import me.chanjar.weixin.mp.bean.result.WxMpUser;
1414

1515
/**
16-
* @author Binary Wang(https://github.com/binarywang)
16+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1717
*/
1818
@Component
1919
public class SubscribeHandler extends AbstractHandler {

src/main/java/com/github/binarywang/demo/wx/mp/handler/UnsubscribeHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.Map;
1010

1111
/**
12-
* @author Binary Wang(https://github.com/binarywang)
12+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
1313
*/
1414
@Component
1515
public class UnsubscribeHandler extends AbstractHandler {

src/main/java/com/github/binarywang/demo/wx/mp/utils/JsonUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import com.google.gson.GsonBuilder;
55

66
/**
7-
* @author Binary Wang(https://github.com/binarywang)
7+
* @author <a href="https://github.com/binarywang">Binary Wang</a>
88
*/
99
public class JsonUtils {
1010
public static String toJson(Object obj) {

0 commit comments

Comments
 (0)