java
文章平均质量分 68
WMSmile
这个作者很懒,什么都没留下…
展开
-
SpringBoot2.x+MybatisPlus+HikariCP多数据源动态配置
# SpringBoot2.x+MybatisPlus+HikariCP多数据源动态配置>环境>SpringBoot 2.7.0>MybatisPlus 3.5.2> [项目源码地址](https://gitee.com/248048936/SpringBootDemos/tree/master/DynamicMultiDatabase)原创 2022-08-12 18:30:00 · 1024 阅读 · 0 评论 -
canal.deployer-1.1.6 遇到dump address has an error, retrying. caused by问题
# canal.deployer-1.1.6 遇到dump address has an error, retrying. caused by问题canal.deployer-1.1.6 遇到 dump address has an error, retrying. caused by com.alibaba.otter.canal.parse.exception.CanalParseException: java.io.IOException: ErrorPacket [errorNumber=114原创 2022-07-19 16:15:44 · 978 阅读 · 0 评论 -
SpringBoot2.x简单实现定时任务功能
# SpringBoot2.x简单实现定时任务功能## 1、新建一个SpringBoot项目可以使用[https://start.spring.io/](https://start.spring.io/)快速新建一个SpringBoot项目。> 本教程使用的是2.7.4版本## 2、启动类启用定时在启动类上面加上@EnableScheduling即可开启定时```java@EnableScheduling@SpringBootApplicationpublic class Can原创 2022-06-16 15:45:45 · 225 阅读 · 0 评论 -
【转】canal源码分析
canal源码分析,canal server源码分析,canal deployer源码分析原创 2022-04-21 11:15:04 · 1505 阅读 · 0 评论 -
Springboot实战之spring-boot-starter-data-elasticsearch搭建ES搜索接口
Springboot实战之spring-boot-starter-data-elasticsearch搭建ES搜索接口原创 2022-03-09 13:59:01 · 3240 阅读 · 0 评论 -
Springboot2.x整合eureka-server和netflix-zuul项目实战
Springboot2.x整合eureka-server和netflix-zuul项目实战Springboot2.x整合eureka-server和netflix-zuul项目实战,有啥问题欢迎提出优化。一起快乐的板砖。微服务架构:#mermaid-svg-ALXEARHbzPfo84dx .label{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);fill:#333;color:原创 2021-08-13 20:20:09 · 547 阅读 · 0 评论 -
springboot2.x集成swagger 404 not found的问题
有时候我们参考别人的博客和文章,来实现集成swagger的问题。你看文章的版本太老,所以手贱使用最新版,导致404.参考网上的文章也是无解,最后再springfox官方github找到了原因。博客使用的2.9.x,我使用最新的3.0.0然后怎么访问都是404,最后发现访问地址的问题。swagger3.x 的访问地址: http://xxx:8080/swagger-ui/swagger2.x 的访问地址: http://xxx:8080/swagger-ui.html最后附录:swagger2原创 2021-08-02 19:26:23 · 2299 阅读 · 0 评论 -
解决Maven项目出现 Cannot resolve org.springframework.security:spring-security-web:5.5.1
解决Maven项目出现 Cannot resolve org.springframework.security:spring-security-web:5.5.1当我们使用maven 会出现 Cannot resolve org.springframework.security:spring-security-web:5.5.1的error原因:网络不好的时候导致文件未下载完整解决办法:去对应的本地仓库repository找到对应的版本删除,进入项目右键-maven-reimport 就可以了。原创 2021-07-30 17:08:05 · 4927 阅读 · 0 评论 -
[Java] List.of() 报错问题解决
首先,检查您使用的Java版本是否正确?由于Java 9才支持List接口的static工厂方法,请参见List.of。 private static List<Item> defaultItems() { //java 8 return Arrays.asList( new Item(1L, "Burger", 599L, "Tasty", "https://cdn.auth0.com/blog/whatabyte/burger-原创 2021-03-29 10:43:04 · 11550 阅读 · 4 评论 -
Spring-boot required a bean named entityManagerFactory that could not be found
在学习spring-boot2.3.0的过程中遇到了Spring-boot: required a bean named ‘entityManagerFactory’ that could not be found或A component required a bean named ‘entityManagerFactory’ that could not be found.解决办法:我收到错误消息,例如“找不到名为’entityManagerFactory’的bean”。经过大量的谷歌搜索解决了这个问原创 2020-05-26 20:45:54 · 8512 阅读 · 3 评论