摘要:
以下为5.0.5版本实践 1、下载压缩包,下载地址:https://redis.io/ 2、安装redis (1)解压~/Downloads/redis-5.0.5.tar.gz为~/Downloads/redis-5.0.5 (2)将解压后的包移动到/usr/local下: (3)安装redis: 阅读全文
摘要:
下载地址:http://activemq.apache.org/components/classic/download/ 解压后终端到bin目录下 cd ~/Downloads/apache-activemq-5.15.9/bin/macosx ./activemq start 启动mq 浏览器打开 阅读全文
摘要:
@EnableScheduling开启定时任务 @Scheduled(cron = "0 0 */1 * * ?")配置执行方法及定时规则 执行规则: https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework 阅读全文
摘要:
spring boot整合kafka之后没有办法做到动态配置是否启用kafka,因此将kafka支持做成插件的形式 1、创建子模块(以longc-plugin-kafka为例),pom配置如下: 此处longc-core为spring-boot项目基础包 2、添加kafka配置: 配置的含义可参考h 阅读全文