摘要: 程序设计 Java JavaSE Apache Commons Servlet & JSP Maven JMS ActiveMQ WebService CXF Jersey HttpClient Spring MyBatis Quartz Scheduler Ehcache ZooKeeper To 阅读全文
posted @ 2016-04-08 17:15 huey2672 阅读(722) 评论(0) 推荐(0) 编辑
  2018年2月3日
摘要: Java 标准所提供的访问资源的类(如 java.net.URL、java.io.File 等)并不能很好地满足各种底层资源的访问需求,比如缺少从类路径或者 Web 容器的上下文中获取资源的操作类。 Resource 接口 Spring 提供了一个 Resource 接口,它为应用提供了更强的底层资 阅读全文
posted @ 2018-02-03 18:52 huey2672 阅读(310) 评论(0) 推荐(0) 编辑
  2017年11月8日
摘要: Java Web 工程 新建一个简单的 Java Web 工程,并提交至 GitHub,可参考 Eclipse 提交工程至 GitHub 下载 jekins.war 在 http://mirrors.jenkins.io/war-stable/ 选择版本并下载 jekins.war 安装 jekin 阅读全文
posted @ 2017-11-08 21:15 huey2672 阅读(580) 评论(0) 推荐(0) 编辑
摘要: Hello world,Jekins + Maven + Git + Tomcat 的简单应用 阅读全文
posted @ 2017-11-08 17:38 huey2672 阅读(110) 评论(0) 推荐(0) 编辑
  2016年12月13日
摘要: It's important to note, especially if you have come to JavaScript from another language, that variables in JavaScript are not defined in a block scope 阅读全文
posted @ 2016-12-13 20:34 huey2672 阅读(294) 评论(0) 推荐(0) 编辑
  2016年12月8日
摘要: 有时需要以某一字段作为分组,筛选每一组的另一字段值最大(或最小)的记录。例如,有如下表 app,存储了 app 的 ID、名称、版本号等信息。现在要筛选出每个 app 版本最大的记录。 方法一 方法二 方法三 方法四 阅读全文
posted @ 2016-12-08 17:10 huey2672 阅读(4855) 评论(1) 推荐(1) 编辑
摘要: 异常 异常类的继承关系 日志 标准日志模块 Hello World Logging Configuration 阅读全文
posted @ 2016-12-08 17:01 huey2672 阅读(287) 评论(0) 推荐(0) 编辑
摘要: MongoDB stores BSON documents, i.e. data records, in collections; the collections in databases. Databases In MongoDB, databases hold collections of do 阅读全文
posted @ 2016-12-08 17:01 huey2672 阅读(388) 评论(0) 推荐(0) 编辑
  2016年12月5日
摘要: Overview MongoDB provides clients the ability to perform write operations in bulk. Bulk write operations affect a singlecollection. MongoDB allows app 阅读全文
posted @ 2016-12-05 11:34 huey2672 阅读(629) 评论(0) 推荐(0) 编辑
摘要: Delete Methods MongoDB provides the following methods to delete documents of a collection: Delete at most a single document that match a specified fil 阅读全文
posted @ 2016-12-05 10:39 huey2672 阅读(254) 评论(0) 推荐(0) 编辑
摘要: MongoDB provides the following methods for inserting documents into a collection: db.collection.insertOne() db.collection.insertMany() db.collection.i 阅读全文
posted @ 2016-12-05 10:01 huey2672 阅读(386) 评论(0) 推荐(0) 编辑