上一页 1 2 3 4 5 6 7 ··· 23 下一页
  2020年5月11日
摘要: select ... from table where exists (subquery) 含义: 将主查询的数据放到子查询中做验证,根据验证结果(true or false) 来决定主查询结果集. 阅读全文
posted @ 2020-05-11 23:24 显示账号 阅读(146) 评论(0) 推荐(0) 编辑
  2020年4月28日
摘要: 1. 安装编译库 yum install build-essential openssl openssl-devel unixODBC unixODBC-devel make gcc gcc-c++ kernel-devel m4 ncurses-devel tk tc xz 2. 下载安装包 wg 阅读全文
posted @ 2020-04-28 23:26 显示账号 阅读(249) 评论(0) 推荐(0) 编辑
摘要: spring cache默认缓存底层是使用CurrentHashMap, 本示例使用redis作为缓存载体 1. pom.xml依赖 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId 阅读全文
posted @ 2020-04-28 22:26 显示账号 阅读(478) 评论(0) 推荐(0) 编辑
  2020年4月27日
摘要: springmvc默认的消息转换器是使用的MappingJackson2HttpMessageConverter, 其核心类就是ObjectMapper. 先看一下面一个示例 @RestController public class TestObjectMapperController { @Get 阅读全文
posted @ 2020-04-27 23:01 显示账号 阅读(4050) 评论(0) 推荐(0) 编辑
  2020年4月21日
摘要: 1. 下载安装包 https://prometheus.io/download/ 2. 上传解压 -rwxr-xr-x. 1 3434 3434 26971621 Dec 11 22:13 alertmanager -rw-r--r--. 1 3434 3434 380 Dec 11 22:51 a 阅读全文
posted @ 2020-04-21 22:02 显示账号 阅读(363) 评论(0) 推荐(0) 编辑
  2020年4月16日
摘要: 1. 首先去prometheus官网下载了安装包 https://prometheus.io/download/ 2. 上传安装包到服务器,然后解压 解压之后的文件如上图所示 ./prometheus --help #查看命令 ./prometheus # 启动prometheus服务 3. 浏览器 阅读全文
posted @ 2020-04-16 22:59 显示账号 阅读(339) 评论(0) 推荐(0) 编辑
  2020年4月12日
摘要: Ribbon负载策略有以下几种: 默认是使用轮询策略. 在springboot项目中,使用ribbon+RestTemplate可以很方便的实现的实现轮询负载策略 配置代码如下: @Configuration public class ApplicationContextConfig { @Bean 阅读全文
posted @ 2020-04-12 23:02 显示账号 阅读(340) 评论(0) 推荐(0) 编辑
  2020年3月29日
摘要: 第一种方式: 使用枚举 优化前 String orderStatusDes; if (orderStatusCode == 1) { orderStatusDes = "订单未支付"; } else if (orderStatusCode == 2) { orderStatusDes = "订单已支 阅读全文
posted @ 2020-03-29 21:31 显示账号 阅读(210) 评论(0) 推荐(0) 编辑
  2020年3月25日
摘要: springpring初始化bean的3种方式 第一种方式: 使用注解@PostConstruct @PostConstruct public void init() { System.out.println("spring 初始化bean的第1种方式"); } 第二种方式: 实现Initializ 阅读全文
posted @ 2020-03-25 23:10 显示账号 阅读(140) 评论(0) 推荐(0) 编辑
  2020年3月22日
摘要: 1. 在pom.xml文件中添加依赖 <!--热部署--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</s 阅读全文
posted @ 2020-03-22 20:50 显示账号 阅读(348) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 23 下一页