码迷,mamicode.com
首页 >  
搜索关键字:gap    ( 826个结果
十六、springcloud(二)Eureka集群
1、创建子工程spring-cloud-peer(jar) 2、创建application-peer1.properties,application-peer2.properties application-peer1.properties application-peer2.properties ...
分类:编程语言   时间:2018-10-14 16:17:42    阅读次数:134
160. Intersection of Two Linked Lists
一、题目 1、审题 2、分析 给出两个单向链表,如果两个链表用重叠部分,输出重叠节点的第一个节点,否则输出 null; 二、解答 1、思路: 方法一、 将两个链表按照尾部进行对齐,在开始遍历链表,查找是否存在重叠节点。 ①、计算两个链表长度; ②、将长的链表向后移动,使得两链表尾部对齐; ③、开始查 ...
分类:其他好文   时间:2018-10-13 19:48:15    阅读次数:173
Springboot-Static-Resource
Springboot-Static-Resource package com.bjsxt.app; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.Spr ...
分类:编程语言   时间:2018-10-13 10:56:23    阅读次数:217
刚装上新环境发现 检测到 14687 次失败的登陆,您的服务器可能存在暴破风险
IP地址: 112.85.42.233江苏省连云港市 联通 ...
分类:其他好文   时间:2018-10-10 14:19:12    阅读次数:1218
python数据结构之希尔排序
def shell_sort(alist): n=len(alist) gap= int(n / 2) #步长 while gap>0: for i in range(gap,n): j=i while j>=gap and alist[j-gap] > alist[j]: alist[j-g... ...
分类:编程语言   时间:2018-10-07 11:03:18    阅读次数:171
avoid
avoid 英[??v??d] 美[??v??d] avoid 英[??v??d] 美[??v??d] [例句]The pilots had to take emergency action to avoid a disaster 飞行员不得不采取紧急措施避免灾难的发生。 ...
分类:其他好文   时间:2018-10-06 13:11:29    阅读次数:188
Feign实现负载均衡
1.本文在基于Spring Cloud做负载均衡文章上进行开发,网址https://www.cnblogs.com/SakerLiu/p/9743577.html,首先创建一个server,2个端口不同的service,其中server的端口号为8801,service为8802/8803 2.按照 ...
分类:其他好文   时间:2018-10-05 16:11:41    阅读次数:191
164. Maximum Gap
Given an unsorted array, find the maximum difference between the successive elements in its sorted form. Return 0 if the array contains less than 2 el ...
分类:其他好文   时间:2018-10-04 11:24:37    阅读次数:170
spring cloud (一) 服务注册中心 Eueka
1 pom.xml 添加依赖包 完整依赖 2 启动类加eureka服务注解 3 配置文件 server.port=8080eureka.instance.hostname=localhosteureka.client.register-with-eureka=falseeureka.client.f ...
分类:编程语言   时间:2018-10-03 21:16:43    阅读次数:305
spring boot 生成 war 包有一个war.original是什么?
<! flowchart 箭头图标 勿删 两个坑 .war.original 生成这种格式的文件,是因为在开启了二次打包。具体可以看这里 修改入口文件的配置 , 官方文档看这里 类似下面的代码,要继承SpringBootServletInitializer @SpringBootApplicatio ...
分类:编程语言   时间:2018-09-28 15:22:12    阅读次数:1815
826条   上一页 1 ... 31 32 33 34 35 ... 83 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!