Skip to content

Commit

Permalink
⬆️ 升级spring boot版本
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed May 10, 2022
1 parent d19dfc2 commit 4ea5f12
Show file tree
Hide file tree
Showing 21 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.7.RELEASE</version>
<version>2.6.7</version>
</parent>

<groupId>com.github.binarywang</groupId>
Expand All @@ -20,7 +20,7 @@
<properties>
<weixin-java-mp.version>4.3.0</weixin-java-mp.version>

<java.version>14</java.version>
<java.version>8</java.version>
<!-- <maven.compiler.source>1.8</maven.compiler.source>-->
<!-- <maven.compiler.target>1.8</maven.compiler.target>-->
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@SpringBootApplication
public class WxMpDemoApplication {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import org.slf4j.LoggerFactory;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
public abstract class AbstractBuilder {
protected final Logger logger = LoggerFactory.getLogger(getClass());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import me.chanjar.weixin.mp.bean.message.WxMpXmlOutMessage;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
public class ImageBuilder extends AbstractBuilder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import me.chanjar.weixin.mp.bean.message.WxMpXmlOutTextMessage;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
public class TextBuilder extends AbstractBuilder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/**
* wechat mp configuration
*
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@AllArgsConstructor
@Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* wechat mp properties
*
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Data
@ConfigurationProperties(prefix = "wx.mp")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import static me.chanjar.weixin.common.api.WxConsts.MenuButtonType;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@AllArgsConstructor
@RestController
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import me.chanjar.weixin.mp.bean.message.WxMpXmlOutMessage;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Slf4j
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import org.slf4j.LoggerFactory;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
public abstract class AbstractHandler implements WxMpMessageHandler {
protected Logger logger = LoggerFactory.getLogger(getClass());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.Map;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Component
public class KfSessionHandler extends AbstractHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import static me.chanjar.weixin.common.api.WxConsts.XmlMsgType;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Component
public class LocationHandler extends AbstractHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import java.util.Map;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Component
public class LogHandler extends AbstractHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import static me.chanjar.weixin.common.api.WxConsts.EventType;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Component
public class MenuHandler extends AbstractHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import static me.chanjar.weixin.common.api.WxConsts.XmlMsgType;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Component
public class MsgHandler extends AbstractHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.Map;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Component
public class NullHandler extends AbstractHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import me.chanjar.weixin.mp.bean.message.WxMpXmlOutMessage;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Component
public class ScanHandler extends AbstractHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* 门店审核事件处理
*
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Component
public class StoreCheckNotifyHandler extends AbstractHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import me.chanjar.weixin.mp.bean.result.WxMpUser;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Component
public class SubscribeHandler extends AbstractHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.Map;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Component
public class UnsubscribeHandler extends AbstractHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import com.google.gson.GsonBuilder;

/**
* @author Binary Wang(https://github.com/binarywang)
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
public class JsonUtils {
public static String toJson(Object obj) {
Expand Down

0 comments on commit 4ea5f12

Please sign in to comment.