个人简介

Echo Blog


江湖无名 安心练剑
  • ActiveMQ-01-Overview
    ActiveMQ Apache ActiveMQ ™ is the most popular and powerful open source messaging and Integration Patterns server. Apache ActiveMQ is fast, supports many Cross Language Clients and Protocols, co...
    2017-06-07 08:38:51 | Java
  • MongoDB-08-log4j2
    日志入库 实现方式 有两种方式: 自定义 appender 使用官方定义好的 appender NoSQLAppenderMongoDB3 实战 环境: jdk: 1.8 mongodb: 3.4.4 (未设置登录密码) jar 引入 按照官方 demo, log4j2 版本为: 2.11.0。 <depende...
    2017-05-31 09:41:22 | SQL
  • MongoDB-07-java in action
    Java 实战 官方快速开始 快速开始 jar 引入 mongodb <!--mongodb--> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongo-java-driver</artifactId> <...
    2017-05-31 08:41:22 | SQL
  • MongoDB-06-sort, index, aggregate
    Sort 在MongoDB中使用使用 sort() 方法对数据进行排序,sort() 方法可以通过参数指定排序的字段,并使用 1 和 -1 来指定排序的方式,其中 1 为升序排列,而 -1是用于降序排列。 sort()方法基本语法如下所示: > db.COLLECTION_NAME.find().sort({KEY:1}) 数据准备 > db.col.find(); ...
    2017-05-31 07:41:22 | SQL
  • MongoDB-05-operator
    Condition Operator 为了测试,我们首先进行数据准备。 db.col.find().pretty(); { "_id" : ObjectId("59396dd67ad7ebedf2146587"), "title" : "MongoDB", "description" : "MongoDB 是一个 Nosql 数据库", "by" : "Runoob", "ur...
    2017-05-31 06:41:22 | SQL
  • MongoDB-04-document
    Insert Document 本章节中我们将向大家介绍如何将数据插入到MongoDB的集合中。 文档的数据结构和JSON基本一样。 所有存储在集合中的数据都是BSON格式。 BSON是一种类json的一种二进制形式的存储格式,简称Binary JSON。 一、常规处理方式 插入文档 MongoDB 使用 insert() 或 save() 方法向集合中插入文档,语法如下: ...
    2017-05-31 05:41:22 | SQL
  • MongoDB-03-database
    Create DB MongoDB 创建数据库的语法格式如下: use DATABASE_NAME 如果数据库不存在,则创建数据库,否则切换到指定数据库。 eg: > use test switched to db test > db test 如果你想查看所有数据库,可以使用 show dbs 命令 > show dbs admin 0.000GB l...
    2017-05-31 04:41:22 | SQL
  • MongoDB-02-base
    MongoDB Concept SQL术语/概念 MongoDB术语/概念 解释/说明 database database 数据库 table collection 数据库表/集合 ...
    2017-05-31 03:41:22 | SQL