提交代码
parent
ea52f8e363
commit
5c1e1e427b
4
pom.xml
4
pom.xml
|
@ -35,8 +35,8 @@
|
|||
<minio.version>8.2.2</minio.version>
|
||||
<poi.version>4.1.2</poi.version>
|
||||
<pinyin4j.version>2.5.1</pinyin4j.version>
|
||||
<weixin.mp.version>2.7.0</weixin.mp.version>
|
||||
<weixin.miniapp.version>4.5.5.B</weixin.miniapp.version>
|
||||
<weixin.mp.version>4.0.6.B</weixin.mp.version>
|
||||
<weixin.miniapp.version>4.0.6.B</weixin.miniapp.version>
|
||||
<transmittable-thread-local.version>2.14.2</transmittable-thread-local.version>
|
||||
</properties>
|
||||
|
||||
|
|
|
@ -3,9 +3,9 @@ package com.yanzhu.manage.config;
|
|||
import cn.binarywang.wx.miniapp.api.WxMaService;
|
||||
import cn.binarywang.wx.miniapp.api.impl.WxMaServiceImpl;
|
||||
import cn.binarywang.wx.miniapp.config.impl.WxMaDefaultConfigImpl;
|
||||
import me.chanjar.weixin.mp.api.WxMpInMemoryConfigStorage;
|
||||
import me.chanjar.weixin.mp.api.WxMpService;
|
||||
import me.chanjar.weixin.mp.api.impl.WxMpServiceImpl;
|
||||
import me.chanjar.weixin.mp.config.impl.WxMpDefaultConfigImpl;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
@ -29,7 +29,7 @@ public class WeChatConfig {
|
|||
*/
|
||||
@Bean
|
||||
public WxMpService wxMpService() {
|
||||
WxMpInMemoryConfigStorage config = new WxMpInMemoryConfigStorage();
|
||||
WxMpDefaultConfigImpl config = new WxMpDefaultConfigImpl();
|
||||
log.info("weChatProperties.mpAppId...{}",weChatProperties.getMpAppId());
|
||||
log.info("weChatProperties.mpAppSecret...{}",weChatProperties.getMpAppSecret());
|
||||
config.setAppId(weChatProperties.getMpAppId());
|
||||
|
@ -47,14 +47,14 @@ public class WeChatConfig {
|
|||
*/
|
||||
@Bean
|
||||
public WxMaService wxMaService() {
|
||||
WxMaDefaultConfigImpl wxMaConfig = new WxMaDefaultConfigImpl();
|
||||
WxMaDefaultConfigImpl config = new WxMaDefaultConfigImpl();
|
||||
log.info("weChatProperties.maAppId...{}",weChatProperties.getMaAppId());
|
||||
log.info("weChatProperties.maAppSecret...{}",weChatProperties.getMaAppSecret());
|
||||
wxMaConfig.setAppid(weChatProperties.getMaAppId());
|
||||
wxMaConfig.setSecret(weChatProperties.getMaAppSecret());
|
||||
config.setAppid(weChatProperties.getMaAppId());
|
||||
config.setSecret(weChatProperties.getMaAppSecret());
|
||||
|
||||
WxMaService wxMaService = new WxMaServiceImpl();
|
||||
wxMaService.setWxMaConfig(wxMaConfig);
|
||||
wxMaService.setWxMaConfig(config);
|
||||
|
||||
return wxMaService;
|
||||
}
|
||||
|
|
|
@ -33,10 +33,10 @@ public class WxCallBackController {
|
|||
@InnerAuth
|
||||
@GetMapping("/getMaOpenId/{code}")
|
||||
public R<Map<String, Object>> getMaOpenId(@PathVariable("code") String code) {
|
||||
WxMaJscode2SessionResult sessionInfo =
|
||||
wxMaService.getUserService().getSessionInfo(code);
|
||||
log.info("getMaOpenId==>{}...{}",code,sessionInfo.getOpenid());
|
||||
try {
|
||||
WxMaJscode2SessionResult sessionInfo =
|
||||
wxMaService.getUserService().getSessionInfo(code);
|
||||
log.info("getMaOpenId==>{}...{}",code,sessionInfo.getOpenid());
|
||||
return R.ok(BeanUtils.beanToMap(sessionInfo));
|
||||
}catch (Exception e){
|
||||
return R.fail("小程序登录异常!!!");
|
||||
|
|
|
@ -3,9 +3,9 @@ package com.yanzhu.system.config;
|
|||
import cn.binarywang.wx.miniapp.api.WxMaService;
|
||||
import cn.binarywang.wx.miniapp.api.impl.WxMaServiceImpl;
|
||||
import cn.binarywang.wx.miniapp.config.impl.WxMaDefaultConfigImpl;
|
||||
import me.chanjar.weixin.mp.api.WxMpInMemoryConfigStorage;
|
||||
import me.chanjar.weixin.mp.api.WxMpService;
|
||||
import me.chanjar.weixin.mp.api.impl.WxMpServiceImpl;
|
||||
import me.chanjar.weixin.mp.config.impl.WxMpDefaultConfigImpl;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
@ -29,7 +29,7 @@ public class WeChatConfig {
|
|||
*/
|
||||
@Bean
|
||||
public WxMpService wxMpService() {
|
||||
WxMpInMemoryConfigStorage config = new WxMpInMemoryConfigStorage();
|
||||
WxMpDefaultConfigImpl config = new WxMpDefaultConfigImpl();
|
||||
log.info("weChatProperties.mpAppId...{}",weChatProperties.getMpAppId());
|
||||
log.info("weChatProperties.mpAppSecret...{}",weChatProperties.getMpAppSecret());
|
||||
config.setAppId(weChatProperties.getMpAppId());
|
||||
|
|
Loading…
Reference in New Issue