上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: dashboard 版本 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId> <versio 阅读全文
posted @ 2022-08-03 19:13 博麗靈夢 阅读(66) 评论(0) 推荐(0) 编辑
摘要: feign.hystrix.enabled: true 是老版本的配置, 新版的配置是 feign: circuitbreaker: enabled: true 同时还需要引入 hystrix 依赖 <dependency> <groupId>org.springframework.cloud</g 阅读全文
posted @ 2022-08-03 18:50 博麗靈夢 阅读(450) 评论(0) 推荐(0) 编辑
摘要: 问题 原因 JDK 主路径 配置错误,这个路径是 ***/bin/java 中的 *** 部分, 如图 解决 JDK 路径配置好了就没问题了 idea 还做了端口转发 使用的时候可以用这个端口也可以直接用 服务器 ip + 服务器端口 是同样效果的 阅读全文
posted @ 2022-08-03 17:02 博麗靈夢 阅读(1307) 评论(0) 推荐(0) 编辑
摘要: 增加一个 TypeHandler 就好辣 import org.apache.ibatis.type.BaseTypeHandler; import org.apache.ibatis.type.JdbcType; import org.springframework.boot.autoconfig 阅读全文
posted @ 2022-07-30 12:48 博麗靈夢 阅读(898) 评论(0) 推荐(1) 编辑
摘要: 关掉亮度自动调节就好了 阅读全文
posted @ 2022-07-28 10:28 博麗靈夢 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 如图 阅读全文
posted @ 2022-07-26 10:52 博麗靈夢 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 添加 maven 依赖就好 <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> </dependency> 阅读全文
posted @ 2022-07-22 09:26 博麗靈夢 阅读(2640) 评论(1) 推荐(1) 编辑
摘要: 参考 https://blog.csdn.net/weixin_44811578/article/details/107101248 /** * 表头样式 */ private static class XHorizontalCellStyleStrategy extends HorizontalC 阅读全文
posted @ 2022-07-19 11:17 博麗靈夢 阅读(1643) 评论(4) 推荐(2) 编辑
摘要: 排除 poi-ooxml-schemas 包即可 <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>3.1.1</version> <exclusions> <exclusi 阅读全文
posted @ 2022-07-16 14:50 博麗靈夢 阅读(6607) 评论(0) 推荐(2) 编辑
摘要: read 时需要指定 entity EasyExcel.read(file.getInputStream(), XLSEntity.class, this); 阅读全文
posted @ 2022-07-16 10:12 博麗靈夢 阅读(746) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页