微信的OAuth2.0的接口配置信息修改部署Nginx

1.新建springboot项目

package com.cn.wx;


import java.io.PrintWriter;

import java.util.Enumeration;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.log4j.Logger;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@RequestMapping("/wechat")
@Controller
public class WechatController {
    private static Logger logger = Logger.getLogger(WechatController.class);
	//token要一致
    private static String WECHAT_TOKEN = "GJJYYDS";

    @RequestMapping(value = "/wx.do")
    public void get(HttpServletRequest request, HttpServletResponse response) throws Exception {

        logger.error("WechatController   ----   WechatController");

        System.out.println("========WechatController========= ");
        logger.info("请求进来了...");

        Enumeration pNames = request.getParameterNames();
        while (pNames.hasMoreElements()) {
            String name = (String) pNames.nextElement();
            String value = request.getParameter(name);
            // out.print(name + "=" + value);

            String log = "name =" + name + "     value =" + value;
            logger.error(log);
        }

        String signature = request.getParameter("signature");/// 微信加密签名
        String timestamp = request.getParameter("timestamp");/// 时间戳
        String nonce = request.getParameter("nonce"); /// 随机数
        String echostr = request.getParameter("echostr"); // 随机字符串
        PrintWriter out = response.getWriter();

        //if (SignUtil.checkSignature(signature, timestamp, nonce)) {
        out.print(echostr);
//		}s
        out.close();
//		out = null;

    }

}

2.nginx配置

location /wechat/wx.do {
 proxy_pass      http://域名或ip:8080/wechat/wx.do;
}

nginx -s reload重启nginx

3.boot项目打包并上传服务器

nohup java -jar wxxxxx.jar &后台运行

上一篇:毕业设计| 宿舍管理系统设计与实现(开发语言:Java 附 演示、源码下载地址)


下一篇:MybatisPlus实现分页