2019年3月6日

CentOS 7 下使用yum安装MySQL5.7.20 最简单 图文详解

摘要: 原文地址:https://blog.csdn.net/z13615480737/article/details/78906598 原文地址:https://blog.csdn.net/z13615480737/article/details/78906598 原文地址:https://blog.cs 阅读全文

posted @ 2019-03-06 17:48 yhtomail 阅读(1224) 评论(0) 推荐(0) 编辑

2018年12月26日

JVM调优2

摘要: 原文地址:https://blog.csdn.net/sun1021873926/article/details/78002118 一、什么是JVM JVM是Java Virtual Machine(Java虚拟机)的缩写,JVM是一种用于计算设备的规范,它是一个虚构出来的计算机,是通过在实际的计算 阅读全文

posted @ 2018-12-26 18:54 yhtomail 阅读(210) 评论(0) 推荐(0) 编辑

CAP理论/AP架构/CP架构

摘要: 原文地址:https://blog.csdn.net/u013058742/article/details/83541905 原文地址:https://blog.csdn.net/u013058742/article/details/83541905 原文地址:https://blog.csdn.n 阅读全文

posted @ 2018-12-26 16:05 yhtomail 阅读(1426) 评论(0) 推荐(0) 编辑

2018年12月25日

JDK8 JVM性能优化-1

摘要: 原文地址:https://blog.csdn.net/xingkongtianma01/article/details/80689928 大 多数情况下,我们并不需要关心JVM的底层,但是如果了解它的话,对于我们系统调优是非常有用的,在这里面了解JVM的GC原理,是非常重要的一块知识。 我们都知道对 阅读全文

posted @ 2018-12-25 18:10 yhtomail 阅读(337) 评论(0) 推荐(0) 编辑

2018年12月20日

string+和stringbuffer的速度比较

摘要: 当时大部分的新手猿友都表示,stringbuffer快于string+。唯有群里一位有工作经验的猿友说,是string+的速度快。这让LZ意识到,工作经验确实不是白积累的,一个小问题就看出来了。 这里确实string+的写法要比stringbuffer快,是因为在编译这段程序的时候,编译器会进行常量 阅读全文

posted @ 2018-12-20 17:37 yhtomail 阅读(351) 评论(0) 推荐(0) 编辑

2018年12月12日

@SpringBootApplication注解分析

摘要: 首先我们分析的就是入口类Application的启动注解@SpringBootApplication,进入源码: 发现@SpringBootApplication是一个复合注解,包括@ComponentScan,和@SpringBootConfiguration,@EnableAutoConfigu 阅读全文

posted @ 2018-12-12 18:16 yhtomail 阅读(211) 评论(0) 推荐(0) 编辑

2018年11月21日

Spring Cloud底层原理

摘要: 目录 一、业务场景介绍 二、Spring Cloud核心组件:Eureka 三、Spring Cloud核心组件:Feign 四、Spring Cloud核心组件:Ribbon 五、Spring Cloud核心组件:Hystrix 六、Spring Cloud核心组件:Zuul 七、总结 概述 毫无 阅读全文

posted @ 2018-11-21 18:17 yhtomail 阅读(192) 评论(0) 推荐(0) 编辑

2018年11月20日

Window 下安装 redis

摘要: 下载地址:https://github.com/MSOpenTech/redis/releases Redis 支持 32 位和 64 位。这个需要根据你系统平台的实际情况选择,这里我们下载 Redis-x64-xxx.zip压缩包到 D:\Development_Tools\Redis。 安装完成 阅读全文

posted @ 2018-11-20 11:12 yhtomail 阅读(105) 评论(0) 推荐(0) 编辑

2018年11月12日

Spring的任务调度@Scheduled注解——task:scheduler和task:executor的解析

摘要: 原文地址: https://blog.csdn.net/yx0628/article/details/80873774 原文地址: https://blog.csdn.net/yx0628/article/details/80873774 原文地址: https://blog.csdn.net/yx 阅读全文

posted @ 2018-11-12 19:13 yhtomail 阅读(2466) 评论(0) 推荐(0) 编辑

2018年9月4日

多线程捕获线程中的异常

摘要: 写的时候最好要设置线程名称 Thread.name,并设置线程组 ThreadGroup,目的是方便管理。在出现问题的时候,打印线程栈 (jstack -pid) 一眼就可以看出是哪个线程出的问题,这个线程是干什么的。 方法一 Thread方式通过线程组,线程名,并设置UncaughtExcepti 阅读全文

posted @ 2018-09-04 10:44 yhtomail 阅读(538) 评论(0) 推荐(0) 编辑

导航