摘要: 用flayway实现springboot项目启动自动执行sql功能: 1、在pom文件中引入依赖包: <!--自动执行sql--> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> <v 阅读全文
posted @ 2020-12-18 11:26 tercelpower 阅读(621) 评论(0) 推荐(0) 编辑
摘要: 1、RabbitMQ的基本概念与原理(一) 2、RabbitMQ系列(二)深入了解RabbitMQ工作原理及简单使用 3、RabbitMQ交换器Exchange介绍与实践 4、RabbitMQ事务和Confirm发送方消息确认——深入解读 5、Java SpringBoot集成RabbitMq实战和 阅读全文
posted @ 2020-04-21 13:41 tercelpower 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1.把项目打成war包放到linux服务器上 2.linux相应项目对应的启动命令: #!/bin/bash export BUILD_ID=dontKillMe pid=`ps -ef | grep /home/rivamed/fw-fhvc/flvcat-hvc-exec-v2.0.0.11.w 阅读全文
posted @ 2020-04-20 16:25 tercelpower 阅读(1724) 评论(1) 推荐(0) 编辑
摘要: 一、盘点列表逻辑梳理 1、RFID耗材逻辑处理 private List<FhvcInventoryConsumablesVo> judgeRfidConsumables(FhvcInventoryDto dto) { // 耗材柜组在柜耗材的列表,根据cstId和deviceId区分 List<F 阅读全文
posted @ 2019-11-27 15:03 tercelpower 阅读(248) 评论(0) 推荐(0) 编辑
摘要: -- 查看所有进程1、SHOW PROCESSLIST; kill processid;杀死线程; 2、开始,命令查看,是哪台服务器上运行了什么命令select id, db, user, host, command, time, state, infofrom information_schema 阅读全文
posted @ 2019-11-20 14:24 tercelpower 阅读(5500) 评论(1) 推荐(0) 编辑