摘要:
由于第三方jar不在远程maven库上,又要实现远程服务器自动打包发布功能,当然远程服务器本地仓库也是没有要引入的第三方的jar,所以需要把本地引入的jar使用本地引入的方式,生成war时,直接打到war里。 pom【<dependencies>】节点添加本地jar <dependency> <gr 阅读全文
2020年3月1日 #
2020年2月29日 #
摘要:
转:https://www.exception.site/docker/docker-delete-image 本文中,您将学习 Docker 如何删除及清理镜像? 一、通过标签删除镜像 通过如下两个都可以删除镜像: docker rmi [image] 或者: docker image rm [i 阅读全文
摘要:
查看有哪些镜像 docker images 镜像保存为本地文件,可以使用Docker save命令 docker save -o 要保存的文件名 要保存的镜像 docker 常用指令 docker ps :查看所有运行的容器 docker ps -a :查看所有容器包括死掉的 docker logs 阅读全文
2020年2月28日 #
摘要:
执行docker pull xx.xx.xx.xx/xx/xx,下载私有库的镜像时报错如下: Error response from daemon: Get https://xx.xx.xx.xx/v2/: Service Unavailable 原因大概是docker默认支持https的协议,而私 阅读全文
2020年2月27日 #
摘要:
option = { title: { left: '1%', text: '考试成绩', textStyle: { //标题颜色 color: '#6E6E6E', fontSize: '13px cursive', } }, tooltip: { trigger: 'axis' }, legen 阅读全文
摘要:
option = { color: ['#57AEFC'], grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, xAxis: { data: ["123",'sad',"234"], axisLabel: { s 阅读全文
2020年2月26日 #
摘要:
A var myChart = echarts.init($("#cc_div").get(0)); // 指定图表的配置项和数据 option = { tooltip : { formatter: "{a} <br/>{b} : {c}%" }, series: [ { type : "gauge 阅读全文
2020年2月25日 #
摘要:
第1种方式 var $target = $(e.target); var istype = $target.attr('istype');//获取组件自定义属性 第2种方式 //获取组件对象 var target = e.currentTarget; var $e = $(target); //获取 阅读全文
2020年2月10日 #
摘要:
//删除之前的信息 if (count > 0) { // 多线程处理 new Thread() { @SuppressWarnings("unchecked") public void run() { int num = 0; Map<String, String> map = null; Str 阅读全文
2020年2月7日 #
摘要:
let option = { color:['#FFD700','#00CED1','#32CD32','#1E90FF'], //环形颜色 tooltip: { trigger: 'item', formatter: '{a} <br/>{b}: {c} ({d}%)' }, graphic: [ 阅读全文