上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 70 下一页
摘要: org.quartz.SchedulerException: Based on configured schedule, the given trigger 'DEFAULT.cron_b1a91e1b-3285-430e-86c9-72e11d19e14f' will never fire. 这个 阅读全文
posted @ 2021-07-10 00:44 yvioo 阅读(1495) 评论(0) 推荐(0)
摘要: /** * 文件下载 */ @GetMapping(value = "/download") public void download(HttpServletResponse response) { //文件路径 try { //文件字节流 JAVA将文件转换成byte数组(byte[]) 参考:h 阅读全文
posted @ 2021-07-09 08:57 yvioo 阅读(4211) 评论(0) 推荐(0)
摘要: < &lt; <= &lt;= > &gt; >= &gt;= & &amp; ' &apos; " &quot; <> &lt;&gt; 阅读全文
posted @ 2021-07-08 16:25 yvioo 阅读(258) 评论(0) 推荐(0)
摘要: MultipartFile转化为byte数组 byte[] bytes= file.getBytes(); byte数组转化为MultipartFile <dependency> <groupId>org.springframework</groupId> <artifactId>spring-te 阅读全文
posted @ 2021-07-07 17:04 yvioo 阅读(7944) 评论(0) 推荐(0)
摘要: 修改设置 阅读全文
posted @ 2021-07-07 13:51 yvioo 阅读(361) 评论(0) 推荐(0)
摘要: location /api1/ { proxy_pass http://localhost:8080; } # http://localhost/api1/xxx -> http://localhost:8080/api1/xxx 不加/ 会把 localtion 后面的所有内容加到url后面 lo 阅读全文
posted @ 2021-07-01 14:24 yvioo 阅读(262) 评论(0) 推荐(0)
摘要: 要先安装docker-compose Linux安装docker-compose 参考:https://www.cnblogs.com/pxblog/p/15049362.html 创建docker-compose.yml 文件 version: '2' services: zookeeper: i 阅读全文
posted @ 2021-06-30 17:33 yvioo 阅读(901) 评论(0) 推荐(0)
摘要: Creating network "kafka_default" with the default driverERROR: Failed to Setup IP tables: Unable to enable SKIP DNAT rule: (iptables failed: iptables 阅读全文
posted @ 2021-06-30 17:09 yvioo 阅读(1849) 评论(0) 推荐(0)
摘要: 右键 阅读全文
posted @ 2021-06-30 16:32 yvioo 阅读(527) 评论(1) 推荐(0)
摘要: 拉取镜像 docker pull nginx 启动镜像 docker run -d -p 8000:8000 -p 443:443 --name nginx -v /data/nginx/www:/usr/share/nginx/html -v /data/nginx/conf/nginx.conf 阅读全文
posted @ 2021-06-30 11:01 yvioo 阅读(532) 评论(0) 推荐(0)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 70 下一页