SpringBoot
SpringBoot知识点
cmmboy1990
积累、
展开
-
druid 数据连接错误discard long time none received connection
druid 数据连接错误discard long time none received connection解决:druid配置中加入参数:datasource:druid:mysql:usePingMethod: false原创 2021-06-03 17:57:58 · 154 阅读 · 0 评论 -
org.apache.poi.hssf.OldExcelFormatException: The supplied spreadsheet seems to be Excel 5.0/7.0
org.apache.poi.hssf.OldExcelFormatException: The supplied spreadsheet seems to be Excel 5.0/7.0easyPoi 读取excel文件 报错解决:原创 2021-06-03 17:16:06 · 520 阅读 · 0 评论 -
springboot 多模块项目启动访问不到controller,提示404问题
springboot 多模块项目启动访问不到controller,提示404问题问题:module-c1是单独的业务模块,有单独的controller层;system-web是启动模块;需要在module-c1 模块中访问接口解决: 在system-web模块 pom文件中添加 module-c1模块的依赖 <dependency> <groupId>com.cmm</groupId>原创 2021-06-03 11:11:04 · 570 阅读 · 0 评论 -
Springboot 2.4+ 自动校验@NotBlank@NotNull等 失效
Springboot 2.4+ 自动校验@NotBlank@NotNull等 失效解决:SpringBoot 2.3.0之后放弃了默认对javax.validation 的支持。添加如下依赖: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifa原创 2021-06-02 16:20:34 · 1258 阅读 · 0 评论