摘要: Android平台签名证书(.keystore)生成指南 点击查看方式:https://ask.dcloud.net.cn/article/35777 查看.keystore文件信息(下划线内容需要替换) keytool -list -v -keystore xxxx.keystore 转换文件在同 阅读全文
posted @ 2022-03-08 16:11 9102 阅读(1696) 评论(0) 推荐(0) 编辑
摘要: 1.feign配置中 compression.request.enabled = true 改为false compression.response.enabled = true 改为false (关闭压缩) 问题可以解决 2.减少传输参数也可以避免此问题 阅读全文
posted @ 2022-03-02 17:43 9102 阅读(3137) 评论(0) 推荐(0) 编辑
摘要: 平时正常运行的项目突然启动报错 maven-resources-production:xxxx: java.lang.NegativeArraySizeException 各种尝试最终解决方式Build->Rebuild Project 阅读全文
posted @ 2021-12-21 09:28 9102 阅读(2014) 评论(0) 推荐(1) 编辑
摘要: 错误信息 error in ./src/main.js Syntax Error: Error: [BABEL] F:\webstorm_space\iwts\src\main.js: Cannot find module '@babel/core' Require stack: - F:\webs 阅读全文
posted @ 2021-12-13 15:34 9102 阅读(1903) 评论(0) 推荐(0) 编辑
摘要: nginx 本地和测试环境下是ok的,当使用测试环境的https://www.xxxxx/访问的时候就出问题;后跟踪日志发现获取到token也就是getHeader为空了; 调整方式 1.检查自定义参数是否包含“_” 若包含 则修改参数 去除 nginx代理默认会把header中参数的 "_" 下划 阅读全文
posted @ 2021-11-25 12:10 9102 阅读(813) 评论(0) 推荐(0) 编辑
摘要: 1.临时生效 #查看 #1 show variables like '%sql_mode%'; #2 SELECT @@GLOBAL.sql_mode; #3 SELECT @@SESSION.sql_mode; #去除only_full_group_by set @@GLOBAL.sql_mode 阅读全文
posted @ 2021-10-29 11:47 9102 阅读(2459) 评论(0) 推荐(0) 编辑
摘要: 产生原因:使用自定义注解的微服务没有扫描到注解的位置解决办法1:在这个微服务的启动类上使用扫描方法 @SpringBootApplication(scanBasePackages = "com.xxx") 解决办法2:可以在微服务的配置类中使用import注解 @Configuration @Ena 阅读全文
posted @ 2021-09-23 16:25 9102 阅读(1142) 评论(0) 推荐(0) 编辑
摘要: mybatis-plus: #外部化xml配置 #config-location: classpath:mybatis-config.xml #指定外部化 MyBatis Properties 配置,通过该配置可以抽离配置,实现不同环境的配置部署 #configuration-properties: 阅读全文
posted @ 2021-09-11 10:48 9102 阅读(1077) 评论(0) 推荐(0) 编辑
摘要: 缺少 <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt --> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> <v 阅读全文
posted @ 2021-09-11 10:30 9102 阅读(1635) 评论(0) 推荐(0) 编辑
摘要: 缺少 <!-- mybatis-plus依赖 --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.2.0</version> </ 阅读全文
posted @ 2021-09-11 10:24 9102 阅读(1057) 评论(0) 推荐(0) 编辑