码迷,mamicode.com
首页 >  
搜索关键字:unresolvable gap    ( 837个结果
十五、springcloud(一)注册中心Eureka
1、Eureka的基本架构 a、Eureka Server 提供服务注册和发现 b、Service Provider 服务提供方 将自身服务注册到Eureka,从而使服务消费方能够找到 c、Service Consumer 服务消费方 从Eureka获取注册服务列表,从而能够消费服务 2、 创建父工 ...
分类:编程语言   时间:2018-10-14 16:36:29    阅读次数:138
十六、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
Error creating bean with name 'shiroFilter': Requested bean is currently in creation: Is there an unresolvable circular reference?
ssm+shiro+maven整合时,Tomcat运行报错,原因是忘记在service层和dao层的实现类上面添加注解了,加上就行了。记录一下 Related cause: org.springframework.beans.factory.BeanCurrentlyInCreationExcept ...
分类:其他好文   时间:2018-10-10 19:18:10    阅读次数:385
刚装上新环境发现 检测到 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
837条   上一页 1 ... 31 32 33 34 35 ... 84 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!