上一页 1 2 3 4 5 6 7 ··· 16 下一页
摘要: vi Dockerfile FROM nginx:1.16.1-alpineCOPY dist/ /usr/share/nginx/html/RUN chmod -R 755 /usr/share/nginx/html 阅读全文
posted @ 2020-09-09 17:04 冬天不眠 阅读(273) 评论(0) 推荐(0) 编辑
摘要: vi Dockerfile FROM openjdk:10-jdk #复制jar包到镜像中 COPY ./app.jar /app/app.jar #时区设置 RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime RUN echo ' 阅读全文
posted @ 2020-09-09 17:03 冬天不眠 阅读(177) 评论(0) 推荐(0) 编辑
摘要: vi Dockerfile #基础镜像 FROM docker.io/centos:latest #作者 MAINTAINER sunys #安装解压工具 RUN yum install -y zip unzip #将当前目录下的jdk复制到 镜像中 COPY ./jdk1.8.0_261 /usr 阅读全文
posted @ 2020-09-09 14:36 冬天不眠 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 1 准备一台可以外网访问的服务器 。 holer 分为服务端和客户端。将服务端部署在服务器上,客户端部署在需要外网访问 阅读全文
posted @ 2020-08-13 19:26 冬天不眠 阅读(450) 评论(0) 推荐(0) 编辑
摘要: <html><head> <title>list</title> <script src="https://cdn.jsdelivr.net/npm/vue"></script> <!-- 引入样式 --> <link rel="stylesheet" href="https://unpkg.com 阅读全文
posted @ 2020-08-11 15:37 冬天不眠 阅读(862) 评论(0) 推荐(0) 编辑
摘要: // 对Date的扩展,将 Date 转化为指定格式的String // 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new Date 阅读全文
posted @ 2020-07-03 09:47 冬天不眠 阅读(172) 评论(0) 推荐(0) 编辑
摘要: import com.yemast.roadcqc.server.webserivce.login.request.UserInfoRequest;import lombok.extern.slf4j.Slf4j;import org.apache.axiom.om.*;import org.apa 阅读全文
posted @ 2020-06-18 15:30 冬天不眠 阅读(2057) 评论(0) 推荐(0) 编辑
摘要: 我们可能经常会用到 Thread.Sleep 函数来使线程挂起一段时间。那么你有没有正确的理解这个函数的用法呢?思考下面这两个问题:假设现在是 2008-4-7 12:00:00.000,如果我调用一下 Thread.Sleep(1000) ,在 2008-4-7 12:00:01.000 的时候, 阅读全文
posted @ 2020-06-08 18:15 冬天不眠 阅读(485) 评论(0) 推荐(0) 编辑
摘要: /** * 计算两个时间差 */public static String getDatePoor(Date endDate, Date nowDate){ long nd = 1000 * 24 * 60 * 60; long nh = 1000 * 60 * 60; long nm = 1000 阅读全文
posted @ 2020-04-08 17:49 冬天不眠 阅读(302) 评论(0) 推荐(0) 编辑
摘要: private String getBodyString(HttpServletRequest request) throws IOException { StringBuilder sb = new StringBuilder(); InputStream inputStream = null; 阅读全文
posted @ 2020-04-02 09:15 冬天不眠 阅读(2766) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 16 下一页