
问题
老鼠扛刀满街找猫@
这个作者很懒,什么都没留下…
展开
-
maven 单元测试报告插件
maven 单元测试报告插件 <!-- 单元测试报告生成插件 --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.8</version>原创 2021-07-29 09:51:35 · 208 阅读 · 0 评论 -
linux jar启动脚本
linux jar启动脚本1. 更新脚本 update.sh#/bin/bash# 设置路径sourcePath=/home/xxx-controllerwebPath=/usr/local# 目录跳转basepath=$(cd `dirname $0`; pwd)cd $basepathecho "start for xxx-controller Web"# 删除原lib包rm -rf $webPath/xxx-controller/lib# 解压文件xxx-controlle原创 2021-07-29 09:48:15 · 171 阅读 · 0 评论 -
Maven assembly打包配置
Maven assembly打包配置pom 配置 <!-- 自定义打zip包--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configurati原创 2021-07-08 11:26:18 · 857 阅读 · 0 评论 -
SpringBoot配置本地文件访问路径
SpringBoot配置本地文件访问路径环境:SpringBoot 2.+application.properties配置# 外部文件访问 file:服务器文件路径spring.resources.static-locations=file:C:\\Users\\Desktop\\folder访问127.0.0.1:8080/projectName/fileName原创 2021-06-12 12:46:59 · 1275 阅读 · 0 评论 -
Echarts 双y轴双折线图
Echarts 双y轴双折线图js codeoption = { title: { text: '折线图堆叠' }, tooltip: { trigger: 'axis' }, legend: { data: ['温度', '湿度'] }, grid: { left: '3%', right: '4%', bottom: '3%', co原创 2021-04-22 10:59:12 · 3174 阅读 · 0 评论 -
Maven打包排除内部配置文件及配置启动类lib路径
Maven打包排除内部配置文件pom.xml配置如下 <build> <plugins> <plugin> <!-- 外部jar依赖配置 --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plu原创 2021-03-26 11:23:02 · 818 阅读 · 0 评论