12 2020 档案
-
导入excel文件信息
摘要:easypoi import cn.afterturn.easypoi.excel.annotation.Excel; import lombok.Data; @Data public class MaterielExcel implements java.io.Serializable{ @Exc 阅读全文
-
shell脚本根据端口号自启动jar
摘要:#! /bin/bash port=8093 pid=`lsof -t -i:$port` echo "$pid" if [ $pid eq 0 ] then echo "api is already stopped" else kill -9 $pid echo "api is killed" f 阅读全文