您现在的位置是: 首页 > 后端开发 记一次Java MessageFormat.format踩坑
记一次Java MessageFormat.format踩坑
2020-05-20 【后端开发】 2326人已围观 4512次浏览
简介记一次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)
相关文章
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SqlServer 优化技巧
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- PHP 中list()出现Undefined offset: 0错误
- SpringBoot 定时任务 多线程
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- Laravel项目出现could not be opened: failed to open stream: Permission denied
- start.spring.io访问太慢,构建SpringBoot项目失败
- SqlServer 刷新所有视图
- SqlServer 查询包含指定字段的存储过程
点击排行
- 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 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- Debian apt 使用国内镜像
- SqlServer 刷新所有视图
- Mac降温软件推荐smcFanControl
- Vue 路由跳转错误 NavigationDuplicated: Avoided redundant navigation to current location
- Vue 报错 Avoid using non-primitive value as key, use string/number value instead
- Windows CMD 常用命令
- SpringBoot @NotBlank 不生效问题
- PHP 中list()出现Undefined offset: 0错误
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- mybatis中大于等于小于等于的写法