您现在的位置是: 首页 > 后端开发 记一次Java MessageFormat.format踩坑
记一次Java MessageFormat.format踩坑
2020-05-20 【后端开发】 440人已围观 567次浏览
简介记一次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)
相关文章
- springboot引入mybatis-plus后出现ClassNotFoundException: org.mybatis.logging.LoggerFactory
- SqlServer 优化技巧
- 获取阿里云CDN真实IP
- SpringBoot 2.x Security security.basic.enabled=false 失效问题解决
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- 删除Git仓库所有历史提交记录,成为一个干净的仓库
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- PHP 中list()出现Undefined offset: 0错误
- PHP 在执行 composer install 时出现提示 PHP Fatal error: Allowed memory size of XXXXXX bytes exhausted <...>
- SqlServer字符串处理
点击排行
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- 记一次 Mybatis-Plus 自动填充无效问题解决
- nuxt 项目完整部署方案
- gulp3 在 node12 上运行出现异常 primordials is not defined
- SpringBoot @NotBlank 不生效问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号