上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
  2018年1月23日
摘要: 1. 下载nginx [root@localhost my.Shells]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE docker.io/redis latest 1e70071f4af4 6 weeks ago 106.7 MB [ro 阅读全文
posted @ 2018-01-23 21:27 wzyy 阅读(57046) 评论(7) 推荐(8) 编辑
  2018年1月22日
摘要: 官网:https://www.docker.com docker安装 yum update yum -y install docker-ce yum list installed | grep docker 查看是否安装成功 systemctl start docker 启动docker syste 阅读全文
posted @ 2018-01-22 22:02 wzyy 阅读(753) 评论(0) 推荐(0) 编辑
  2018年1月12日
摘要: 注意1: org.springframework.web.context.request.async.DeferredResult; 是Spring4.0以后的版本才有的,注意Spring版本,然后添加Spring Springmvc的依赖 Async support must be enabled 阅读全文
posted @ 2018-01-12 17:27 wzyy 阅读(629) 评论(0) 推荐(0) 编辑
  2017年7月21日
摘要: tip: 在上面的方法中: 参数有的是普通类型: 有的是地址类型: 有的是指针类型: 阅读全文
posted @ 2017-07-21 17:45 wzyy 阅读(754) 评论(0) 推荐(1) 编辑
  2017年5月1日
摘要: 1 import java.util.concurrent.ArrayBlockingQueue; 2 import java.util.concurrent.BlockingQueue; 3 4 public class BlockingQueueTest { 5 public static vo 阅读全文
posted @ 2017-05-01 21:43 wzyy 阅读(214) 评论(0) 推荐(0) 编辑
  2017年1月19日
摘要: 1. 自己定义的拦截注解package com.spring.aop; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolic... 阅读全文
posted @ 2017-01-19 20:41 wzyy 阅读(1017) 评论(0) 推荐(0) 编辑
  2017年1月7日
摘要: 二、客户端代码: 1. HttpClient风格的 2.RestTemplate 风格的 import org.springframework.web.client.RestTemplate; 阅读全文
posted @ 2017-01-07 19:32 wzyy 阅读(598) 评论(0) 推荐(0) 编辑
  2016年12月28日
摘要: package com.tree.find; public class TestSearchBST { private static class BiNode{ int data; BiNode lchild; BiNode rchild; } public static b... 阅读全文
posted @ 2016-12-28 21:44 wzyy 阅读(752) 评论(0) 推荐(0) 编辑
摘要: #include #include #include //顺序表查找 //从头到尾逐个比较,找到就返回下标,找不到返回0 //时间复杂度O(n) int Sequential_Search(int *array, int len, int key){ int i; array[0] = key; i = len; while(array[i] != key... 阅读全文
posted @ 2016-12-28 21:15 wzyy 阅读(323) 评论(0) 推荐(0) 编辑
  2016年12月26日
摘要: /* 利用完全二叉树的性质,一个线性数组可以看做是完全二叉树的层次遍历 每次循环把二叉树按照双亲大于左右孩子的规则调换位置,这样一轮下来,根结点就是最大的那个数 把根结点和最后一个元素交换位置 下一次循环继续调换位置,除了最后一个元素 再一次循环继续调换位置,除了最后一个和倒数第二个元素 依次类推。。。 */ #include #include typedef struct ... 阅读全文
posted @ 2016-12-26 20:42 wzyy 阅读(250) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页