您现在的位置是: 首页 > 后端开发 记一次Java MessageFormat.format踩坑
记一次Java MessageFormat.format踩坑
2020-05-20 【后端开发】 2045人已围观 4156次浏览
简介记一次Java MessageFormat.format踩坑
在做三方登录时,需要涉及到处理请求中随机校验码state参数的问题。
Spring Boot 中配置文件,使用MessageFormat占位符方式。
https://open.weixin.qq.com/connect/qrconnect?appid={0}&redirect_uri={1}&response_type=code&scope={2}&state={3}#wechat_redirect
实际处理方法
url = MessageFormat.format(url, APPID, REDIRECT_URI, SCOPE, STATE);
在处理上诉地址时,出现随机校验码state一直是第一次生成出来的随机数,并且在多部设备中测试三方登录时,运行日志中显示,随机数参数一直都是第一次生成出来的参数。
多次尝试查不到原因后,改回原始拼接字符串方式解决。
具体原因研究中,查到后更新!!!
===================================================================
2018年07月31日02:27:48 更新
上诉问题,并不是MessageFormat.format用法问题。
测试出来发现Spring Boot注解
@Value(“${weixin.url}”)
private String url;
在进行
url = url + XXXXXX
类似的操作时,会出现XXXXXX是第一次请求时生成的随机数问题。
具体原理研究中,问题进展持续更新……
很赞哦! (0)
相关文章
- 获取阿里云CDN真实IP
- 记一次 Mybatis-Plus 自动填充无效问题解决
- start.spring.io访问太慢,构建SpringBoot项目失败
- mac idea spring boot 启动慢
- SpringBoot 定时任务 多线程
- SpringBoot 2.x Security security.basic.enabled=false 失效问题解决
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SqlServer 刷新所有视图
- 删除Git仓库所有历史提交记录,成为一个干净的仓库
- Laravel项目出现could not be opened: failed to open stream: Permission denied
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- nuxt 项目完整部署方案
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
站长推荐
猜你喜欢
- 防止Time Machine备份Parallels Desktop的虚拟硬盘文件
- Zookeeper 找不到或无法加载主类 org.apache.zookeeper.server.quorum.QuorumPeerMain
- 【代码片段】MySQL新建表添加基础字段
- Vue 监听回车 el-input 和 input 使用方法不同
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- Laravel Dingo/api 出现 The version given was unknown or has no registered routes.报错
- SqlServer 刷新所有视图
- 删除Git仓库所有历史提交记录,成为一个干净的仓库
- Linux no space left on device 出现设备上没有空间问题
- Laravel项目出现could not be opened: failed to open stream: Permission denied