2018年7月11日
摘要: 官方文档:https://docs.aws.amazon.com/zh_cn/sdk-for-java/v1/developer-guide/welcome.html 感谢大神分享https://blog.csdn.net/u012147490/article/details/53097459 Am 阅读全文
posted @ 2018-07-11 17:20 梓木的稻稻 阅读(631) 评论(0) 推荐(0) 编辑
摘要: 1.启动类中增加@EnableScheduling注解 2.增加批处理类 阅读全文
posted @ 2018-07-11 16:57 梓木的稻稻 阅读(332) 评论(0) 推荐(0) 编辑
  2018年7月4日
摘要: 参考文档:https://www.cnblogs.com/zhanglei93/p/6696599.html MySQL查询性能优化 MySQL查询性能的优化涉及多个方面,其中包括库表结构、建立合理的索引、设计合理的查询。库表结构包括如何设计表之间的关联、表字段的数据类型等。这需要依据具体的场景进行 阅读全文
posted @ 2018-07-04 15:13 梓木的稻稻 阅读(101) 评论(0) 推荐(0) 编辑
  2018年5月28日
摘要: 感谢大神分享! http://www.cnblogs.com/gdpuzxs/p/6623171.html redis安装: (1)官网https://redis.io/download下载linux版本 redis-3.2.8.tar.gz (2)使用xftp将安装包上传到虚拟机上/opt目录下, 阅读全文
posted @ 2018-05-28 16:36 梓木的稻稻 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 感谢大神分享! https://www.cnblogs.com/gdpuzxs/p/7222309.html (1)pom.xml引入jar包,如下: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>sprin 阅读全文
posted @ 2018-05-28 14:05 梓木的稻稻 阅读(275) 评论(0) 推荐(0) 编辑
  2018年4月25日
摘要: 1.创建表 2.创建序列 3.创建触发器 阅读全文
posted @ 2018-04-25 15:33 梓木的稻稻 阅读(167) 评论(0) 推荐(0) 编辑
  2018年4月23日
摘要: private List<Map> risktypes = new ArrayList<Map>() { { add(new HashMap<String,String>(){ { put("critical","CI"); } }); add(new HashMap<String,String>( 阅读全文
posted @ 2018-04-23 14:31 梓木的稻稻 阅读(270) 评论(0) 推荐(0) 编辑
  2018年4月13日
摘要: 感谢大神分享!https://www.cnblogs.com/nexiyi/p/hbase_shell.html hbase(main)> whoami hbase(main)> whoami hbase(main)> whoami hbase(main)> whoami hbase(main)> 阅读全文
posted @ 2018-04-13 14:47 梓木的稻稻 阅读(93) 评论(0) 推荐(0) 编辑
  2018年4月12日
摘要: 新建本地分支: $ git branch iss53 $ git checkout iss53 克隆指定分支 git clone -b <branch name> [remote repository address] 关联本地分支到指定远程分支 git branch --set-upstream- 阅读全文
posted @ 2018-04-12 16:14 梓木的稻稻 阅读(509) 评论(0) 推荐(0) 编辑
  2018年3月28日
摘要: 现在有一个树形结构的元素集合map list,要求遍历该树的所有分支 代码如下: 阅读全文
posted @ 2018-03-28 10:15 梓木的稻稻 阅读(12250) 评论(0) 推荐(0) 编辑