SpringBoot
小韩搬砖呀
好记性不如烂笔头!
展开
-
Spring Boot 中的 @ScheduledSpring Boot 中的 @Scheduled 暂停任务
# application.yml# 定时任务scheduledTask: # 收集主机信息-任务 collectMessage: # 十秒 #cron: "0/10 * * * * ?" #cron: "0/1 1/1 2/2 * * ?" # 不使用定时器 cron: "-"@Scheduled(cron = "${scheduledTask.collectMessage.cron}")...原创 2021-11-08 15:11:13 · 339 阅读 · 0 评论 -
SpringBoot+dubbo 多模块启动服务注册导致2088,端口冲突解决
少说话多做事直接放出配置application.ymldubbo: application: name: supply-server registry: address: zookeeper://192.168.1.120:2181 scan: base-packages: cn.**** protocol: name: dubbo por...原创 2019-02-02 23:46:13 · 1909 阅读 · 0 评论 -
spring Clound EMERGENCY! EUREKA MAY BE INCORRECTLY CLAIMING INSTANCES ARE UP WHEN THEY'RE NOT. RENEW
先看控制台,看着好像定时监测什么来的。貌似是Eureka server和client之间每隔一段进行一次心跳通信来的。正常注册服务对应得信息需然有相关红色字体提示,但是数据以旧可以拿到总结:具体还需要多研究下。...原创 2019-02-16 18:08:44 · 1712 阅读 · 0 评论 -
SpringBoot解决Dubbo中生产者未启动,消费者启动报错
项目使用dubbo时候,默认配置是需要先启动服务器提供者后再启动服务消费着,不然会报错。直接上代码:@Beanpublic ConsumerConfig consumerConfig() { ConsumerConfig consumerConfig = new ConsumerConfig(); consumerConfig.setCheck(false); consum...原创 2019-02-19 21:14:51 · 3155 阅读 · 0 评论