上一页 1 2 3 4 5 6 7 ··· 34 下一页
摘要: /** * 插入排序 */ public class InsertionSort { public static void main(String[] args) { int[] array = {3,1,4,5,2}; for (int i : Insertion(array)) { System 阅读全文
posted @ 2021-10-13 12:43 code-G 阅读(27) 评论(0) 推荐(0) 编辑
摘要: public class BubbleSort { public static void main(String[] args) { int[] array = {3,1,4,5,2}; for (int i : Bubble(array)) { System.out.println(i); } } 阅读全文
posted @ 2021-10-13 12:31 code-G 阅读(22) 评论(0) 推荐(0) 编辑
摘要: public class SelectionSort { public static void main(String[] args) { int[] array = {1,3,4,8,7,4,6,9,0}; for (int i : Selection(array)) { System.out.p 阅读全文
posted @ 2021-10-13 12:10 code-G 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 1.前后端不分离的项目 public class GlobalExceptionResvoler implements HandlerExceptionResolver { @Override public ModelAndView resolveException(HttpServletReque 阅读全文
posted @ 2021-10-08 23:41 code-G 阅读(240) 评论(0) 推荐(0) 编辑
摘要: @Configuration public class RedisTemplateConfig { @Autowired public RedisTemplateConfig(RedisTemplate redisTemplate) { //创建jackson的序列化方式 Jackson2JsonR 阅读全文
posted @ 2021-10-08 23:37 code-G 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 1.自定义XXXGatewayFilterFactory继承AbstractGatewayFilterFactory 2.实现apply和shortcutxxx方法 @Component public class TokenGatewayFilterFactory extends AbstractG 阅读全文
posted @ 2021-10-08 23:36 code-G 阅读(241) 评论(0) 推荐(0) 编辑
摘要: //全局异常处理类 @Configuration public class GlobalExceptionConfiguration implements ErrorWebExceptionHandler { //日志对象 private static final Logger log = Logg 阅读全文
posted @ 2021-10-08 23:31 code-G 阅读(1286) 评论(0) 推荐(0) 编辑
摘要: 没有最好只有更好,Spring Cloud组件很多,选择最合适的就好 都可以使用,个人推荐 1.Spring Cloud开发选择组件 服务注册中心:1.eureka 2.zookeeper 3.consul 4.nacos 选择nacos 组件通信:1.Dubbo(RPC) 2.RestTempla 阅读全文
posted @ 2021-10-03 23:14 code-G 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 1.sentinel 流量控制 1.说明 - 流量控制(flow control),其原理是监控应用流量的 QPS 或并发线程数等指标,当达到指定的阈值时对流量进行控制,以避免被瞬时的流量高峰冲垮,从而保障应用的高可用性。 - 同一个资源可以创建多条限流规则。FlowSlot 会对该资源的所有限流规 阅读全文
posted @ 2021-10-03 23:01 code-G 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 1.说明 https://spring-cloud-alibaba-group.github.io/github-pages/hoxton/en-us/index.html#_how_to_use_sentinel https://github.com/alibaba/Sentinel/wiki 翻 阅读全文
posted @ 2021-10-03 22:48 code-G 阅读(94) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 34 下一页