摘要:
安装JDK脚本 tar -xzvf jdk-8u171-linux-x64.tar.gz mv jdk1.8.0_171/ /usr/local/ sudo tee -a /etc/profile <<-'EOF'JAVA_HOME=/usr/local/jdk1.8.0_171JRE_HOME=$ 阅读全文
摘要:
Eureka Server Eureka Server 启动多个服务集群,集群之间相互注册 @SpringBootApplication @EnableEurekaServer public class EurekaApplication { public static void main(Stri 阅读全文
摘要:
一. Lambda表达式 1.几种常见的函数式接口 @FunctionalInterface public interface Predicate<T> { /** * Evaluates this predicate on the given argument. * * @param t the 阅读全文