摘要:
以下方法方法三 https://blog.csdn.net/u011334954/article/details/103380227 阅读全文
摘要:
0 1 1 2 3 5 8 11 19 30 49 > 斐波拉契数列 //非递归实现public int fib(int n) { if(n == 0) return 0; if(n == 1) return 1; int a = 0; int b = 1; int ret = 0; while ( 阅读全文
摘要:
第一种方法:<!--配置注解驱动--> <mvc:annotation-driven> <!--消息转换器,解决ResponseBody响应中文乱码--> <mvc:message-converters> <bean class="org.springframework.http.converter 阅读全文
摘要:
package cn.abc.forkjoin.file;import java.io.File;import java.util.ArrayList;import java.util.List;import java.util.concurrent.ForkJoinPool;import java 阅读全文
摘要:
链接:https://pan.baidu.com/s/1-EsuGaw0_9ubw5_9AhRS2Q 提取码:1hp4 一,Elasticsearch环境准备 elasticsearch-5.6.8.zip进行解压(安装目录随意) 启动服务: 访问http://127.0.0.1:9200,显示如下 阅读全文
摘要:
解法一:使用jdk中的api方法 class Solution { public int getSum(int a, int b) { return Math.addExact(a,b); } } 解法二:位运算 class Solution { public int getSum(int a, i 阅读全文
摘要:
Get https://registry-1.docker.io/v2/library/hello-world/manifests/latest: net/http: TLS handshake timeout 或 Get https://registry-1.docker.io/v2/: net/ 阅读全文
摘要:
安装solr的前提是Linux中需先安装好jdk和tomcat 第一步: 通过SecureCRT上传 solr-4.10.3.tgz.tgz 链接:https://pan.baidu.com/s/1ZAfxA1JngJNneiCSHBbtCg 提取码:onzp 第二步: 解压tar zxvf sol 阅读全文
摘要:
java.lang.NumberFormatException: For input string: "7004@17004" at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at ja 阅读全文
摘要:
1、使用ruby脚本搭建集群。需要ruby的运行环境。安装ruby yum install ruby2、安装ruby脚本运行使用的包 gem install redis-3.0.0.gem > 前提这个文件你已经上传到你的linux虚拟机上了 Successfully installed redis 阅读全文