Spring Cloud Config:外部集中化配置管理 摘要 Spring Cloud Config 可以为微服务架构中的应用提供集中化的外部配置支持,它分为服务端和客户端两个部分 。 Spring Cloud Config 简介 Spring Cloud Config 分为服务端和客户端两个部 ...
分类:
编程语言 时间:
2021-02-16 12:08:08
阅读次数:
0
用FileInputStream 字节流正确读取中文 1 package IO流; 2 3 import java.io.File; 4 import java.io.FileInputStream; 5 import java.io.IOException; 6 7 public class 读取 ...
分类:
编程语言 时间:
2021-02-16 11:55:08
阅读次数:
0
package com.jiang.io; import java.io.*; /** * @author JQC * @date 2021/2/8-23:21 */ public class FilesCopyTest { public static void main(String[] args ...
分类:
其他好文 时间:
2021-02-09 12:31:52
阅读次数:
0
ReentrantLock,英文意思是可重入锁。从实际代码实现来说,ReentrantLock也是互斥锁(Node.EXCLUSIVE)。与互斥锁对应的的,还有共享锁Node.SHARED ReentrantLock 集成了Lock接口,Lock接口主要功能有上锁lock()、尝试上锁tryLock ...
分类:
其他好文 时间:
2021-02-09 12:01:31
阅读次数:
0
0x01 前言 该漏洞还没分析彻底,有一点小问题卡住了,但复现没问题。 0x02 环境搭建 os:windows 10 tomcat:apache-tomcat-7.0.10 修改conf/web.xml,添加以下代码 <init-param> <param-name>readonly</param ...
分类:
其他好文 时间:
2021-02-06 12:17:02
阅读次数:
0
import java.io.ByteArrayOutputStream;import java.io.IOException; import java.io.InputStream; private byte[] toByteArray(InputStream input) throws IOEx ...
分类:
其他好文 时间:
2021-02-05 10:39:31
阅读次数:
0
public class URLDownload { public static void main(String[] args) throws IOException { URL url=new URL("https://m10.music.126.net/20210204001424/b2ecd ...
分类:
Web程序 时间:
2021-02-04 12:17:48
阅读次数:
0
单机启动 1、获取Kafka 2、解压Kafka $ tar -xzf kafka_2.13-2.7.0.tgz $ cd kafka_2.13-2.7.0 3、启动zk(Kafka包中自带zk程序和配置文件) 配置ZK的日志路径 # Start the ZooKeeper service # No ...
分类:
其他好文 时间:
2021-02-04 12:16:31
阅读次数:
0
1.查看进程信息①进程查看 ps -aux ②根据PID查看进程 ps -aux | grep pid ③进程计数,查看指定进程 ps -aux | wc -l ps -aux | grep kworker 2.查看端口占用信息①查看各个端口占用信息 netstat -an ②查看指定端口占用信息 ...
分类:
系统相关 时间:
2021-02-02 10:39:00
阅读次数:
0
什么是CAS CAS(compare and swap),字面意思比较并交换,是解决多线程并行情况下使用锁造成性能损耗的一种机制. public final boolean compareAndSet(int expect, int update) { return unsafe.compareAn ...
分类:
编程语言 时间:
2021-01-29 12:10:28
阅读次数:
0