
SpringBoot
心若向阳,必生温暖。
木有
展开
-
整合spring-boot-admin报错
整合spring-boot-admin报错的解决办法原创 2022-11-21 16:54:11 · 1133 阅读 · 1 评论 -
【无标题】
Activiti 启动流程实例后查询不到个人代办任务原创 2022-10-07 18:18:12 · 969 阅读 · 0 评论 -
springboot+七牛云对象存储实现文件上传
1,首先得有存储空间2,然后查看CDN加速域名3,查看Access/Secret Key导入七牛云的JDK <dependency> <groupId>com.qiniu</groupId> <artifactId>qiniu-java-sdk</artifactId> <version>[7.7.0,7.7.99]</version> </d原创 2022-03-28 16:23:06 · 684 阅读 · 0 评论 -
mybatis-plus查询表的时候有些字段为空
亲测,已经解决。yaml:mybatis: mapper-locations: classpath:mapper/*.xml# config-location: classpath:mybatis/mybatis-config.xml configuration: map-underscore-to-camel-case: true #开启驼峰命名模式商品ID和品牌ID都是为空。因为我在Product、和Pro原创 2022-03-22 16:24:06 · 2254 阅读 · 0 评论 -
Required request parameter ‘userId‘ for method parameter type String is not present
postman:发送Http请求springboot控制台打印Exception:Required request parameter ‘userId’ for method parameter type String is not present解决问题方法之一:127.0.0.1:8080/user/info?userId = 899-4d2841-89c18cd看一下参数之间是不是写了空格, userId(空格)=(空格)xxxxxx...原创 2022-03-09 16:17:12 · 8271 阅读 · 0 评论 -
IDEA使用Maven中Lifecycle的clean,package对SpringBoot项目打jar包出错
IDEA使用Maven中Lifecycle的clean,package对SpringBoot项目打jar包出错报错信息如下:maven package Non-parseable settings “E:\xxxxx\setting.xml”原因分析:setting.xml中格式出现问题,大概率是注释<!-- -->没有弄好,所以检查格式有没有错误,特别是 “<-- ” “–>” 这些东西有没有多余,位置对不对。所以修改setting.xml文件之前,最好先备份原创 2021-03-29 10:33:55 · 922 阅读 · 0 评论