在進行小程序後端接口開發方面,使用weixin-java-tools中的weixin-java-miniapp模塊,每每能夠事半功倍。
<dependency> <groupId>com.github.binarywang</groupId> <artifactId>weixin-java-miniapp</artifactId> <version>3.3.0</version> </dependency>
compile("com.github.binarywang:weixin-java-miniapp:3.3.0")
配置文件中主要配置四項參數,分別是:java
package com.diboot.miniapp.config; import cn.binarywang.wx.miniapp.api.WxMaService; import cn.binarywang.wx.miniapp.api.impl.WxMaServiceImpl; import cn.binarywang.wx.miniapp.config.WxMaInMemoryConfig; import dibo.framework.config.BaseConfig; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class WxMaConfiguration { // 此處獲取配置的方式能夠改爲你本身的方式,也能夠註解等方式獲取配置等。 private static final String appId = BaseConfig.getProperty("wechat.appId"); private static final String secret = BaseConfig.getProperty("wechat.secret"); private static final String token = BaseConfig.getProperty("wechat.token"); private static final String aesKey = BaseConfig.getProperty("wechat.aesKey"); private static WxMaService wxMaService = null; @Bean public Object services(){ WxMaInMemoryConfig config = new WxMaInMemoryConfig(); config.setAppid(appId); config.setSecret(secret); config.setToken(token); config.setAesKey(aesKey); wxMaService = new WxMaServiceImpl(); wxMaService.setWxMaConfig(config); return Boolean.TRUE; } public static WxMaService getWxMaService(){ return wxMaService; } }
// 獲取小程序服務實例 WxMaService wxMaService = WxMaConfiguration.getWxMaService(); // 獲取小程序二維碼生成實例 WxMaQrcodeService wxMaQrcodeService = wxMaService.getQrcodeService(); // 即可以開始使用wxMaQrcodeService來進行二維碼相關的處理了 ....