国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

RESTFeel: 一個(gè)企業(yè)級(jí)的API管理&測(cè)試平臺(tái)。RESTFeel幫助你設(shè)計(jì)、開發(fā)、測(cè)試

BlackHole1 / 1126人閱讀

摘要:幫助你設(shè)計(jì)開發(fā)測(cè)試您的。請(qǐng)求樹以樹的形式組織請(qǐng)求。合作添加團(tuán)隊(duì)成員,管理多個(gè)項(xiàng)目。自定義的時(shí)間間隔運(yùn)行項(xiàng)目。標(biāo)簽標(biāo)簽提供了一個(gè)有用的方式來(lái)組合相關(guān)的要求。安全,訪問控制,通知機(jī)制等。

RESTFeel

RESTFeel: 一個(gè)企業(yè)級(jí)的API管理&測(cè)試平臺(tái)。RESTFeel幫助你設(shè)計(jì)、開發(fā)、測(cè)試您的API。

功能簡(jiǎn)介:

請(qǐng)求生成器-使HTTP請(qǐng)求輕松。

請(qǐng)求樹以樹的形式組織請(qǐng)求。

合作-添加團(tuán)隊(duì)成員,管理多個(gè)項(xiàng)目。

PDF報(bào)告-生成項(xiàng)目狀態(tài)報(bào)告PDF格式。

歷史-查看歷史/活動(dòng)日志。

自定義的時(shí)間間隔運(yùn)行API項(xiàng)目。

SendGrid - SendGrid集成發(fā)送通知。

云部署-它可以部署在任何服務(wù)器上,也可以用來(lái)作為一個(gè)基于云的托管Web應(yīng)用程序。

私人-安裝在您的環(huán)境和完全擁有它。與你的團(tuán)隊(duì)一起在你的私人網(wǎng)絡(luò)中工作。

數(shù)據(jù)庫(kù)-存儲(chǔ)在您的數(shù)據(jù)庫(kù)中的一切。

swagger API文檔生成。

標(biāo)簽-標(biāo)簽提供了一個(gè)有用的方式來(lái)組合相關(guān)的要求。

安全,訪問控制,通知機(jī)制等。

MongoDB configuration: Building From Source
Prerequisites

JDK 7 or later

Maven 3.0+

Gradle 2.4 (Optional)

MongoDB 3.x

Build
mvn clean install
Run
mvn spring-boot:run
Access

The build file is configured to download and use an embedded Tomcat server. So the application should be up and running by using just two commands mentioned above. Once the server is started, the application can be accessed using http://localhost:8080.

Default login email / password : rf@example.com / rf
Debug
mvn spring-boot:run -Drun.jvmArguments="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000"

Note : To avoid java.lang.OutOfMemoryError: PermGen space, use the following command:

MAVEN_OPTS="-XX:PermSize=256m -XX:MaxPermSize=512m" mvn spring-boot:run 

Go to src/main/resources/env-development.properties and update mongodb properties. Here is how the sample configuration looks like:

mongodb.name=restfiddle

mongodb.host=localhost

mongodb.port=27017

mongodb.username=

mongodb.password=
Steps to re-build the database:
1. Stop RESTFiddle server, if running.
2. Start MongoDB, if not running.
    Here is the command I use : "C:Program FilesMongoDBinmongod.exe" --dbpath C:UsersANUJADocuments
estfiddledata
3. Connect to MongoDB.
    Here is one of the ways to connect to MongoDB : 
    Go to "C:Program FilesMongoDBin" folder and run "mongo" command.
    Then run "use restfiddle" command and finally "db.dropDatabase()" command to delete the existing RESTFiddle database.
    Note : you will see following message on the command prompt : { "dropped" : "restfiddle", "ok" : 1 }
4. Start RESTFiddle application (mvn spring-boot:run) - This will create and initialize the database.
Steps to recover database:
Sometimes MongoDB doesn"t start and shows message:
        old lock file: C:UsersANUJADocuments
estfiddledatadatamongod.lock. probably means unclean shutdown
Run repair operation to recover your database
    "C:Program FilesMongoDBinmongod.exe" --dbpath C:UsersANUJADocuments
estfiddledatadata --repair
Most likely, your data will be repaired with the --repair option. In case it doesn"t, delete the mongod.lock file and then run the above --repair command.
MongoDB配置數(shù)據(jù)庫(kù)用戶名密碼 Step1.首先,切換到admin db (schema):
> use admin;
switched to db admin
Step2.在該 schema 下面設(shè)置用戶名,密碼:
> db.createUser({ user: "root",pwd: "root",customData:{name:"root"},roles:[{ role: "userAdminAnyDatabase",db: "admin" }]})
Successfully added user: {
    "user" : "root",
    "customData" : {
        "name" : "root"
    },
    "roles" : [
        {
            "role" : "userAdminAnyDatabase",
            "db" : "admin"
        }
    ]
}
> db.auth("root","root")
1
Step3.admin中直接給restfiddle權(quán)限
var r = 
    {
      "_id": "restfiddle.root",
      "user": "root",
      "db": "restfiddle",
      "credentials": {
        "SCRAM-SHA-1": {
          "iterationCount": 10000,
          "salt": "riZjwBYHvkcV99typ8BRMA==",
          "storedKey": "E2QOruLrBNXD1mlQTX0TQogL/ws=",
          "serverKey": "JEQhfa/5x7+aNzKrFvKRkctXXfQ="
        }
      },
      "roles": [
        {
          "role": "dbOwner",
          "db": "restfiddle"
        },
        {
          "role": "read",
          "db": "restfiddle"
        },
        {
          "role": "readWrite",
          "db": "restfiddle"
        }
      ]
    }


db.system.users.insert(r)

或者

use restfiddle
db.createUser({"user":"jason","pwd":"123456","roles":["dbOwner","read","readWrite"]})

可以看到admin中已經(jīng)有了jason這個(gè)管理員:

> use admin;
> db.system.users.find();

{
  "_id": "restfiddle.jason",
  "user": "jason",
  "db": "restfiddle",
  "credentials": {
    "SCRAM-SHA-1": {
      "iterationCount": 10000,
      "salt": "HZsutqbxGjKVkPcY4305FQ==",
      "storedKey": "bynL9UW9cIf0iPOLo9pGwCFz638=",
      "serverKey": "PRPKH+7dVaKDJ/JE+7ZjQUe3whA="
    }
  },
  "roles": [
    {
      "role": "dbOwner",
      "db": "restfiddle"
    },
    {
      "role": "read",
      "db": "restfiddle"
    },
    {
      "role": "readWrite",
      "db": "restfiddle"
    }
  ]
}

Fetched 4 record(s) in 9ms

參考文章:

《MongoDB極簡(jiǎn)教程》第一章 安裝&環(huán)境配置

《MongoDB極簡(jiǎn)教程》第二章 MongoDB 基本命令

源自開源項(xiàng)目:

RESTFiddle

歡迎關(guān)注我的個(gè)人空間:

https://jason-chen-2017.githu...

歡迎關(guān)注我的個(gè)人空間:

https://jason-chen-2017.githu...

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/18978.html

相關(guān)文章

  • 優(yōu)勢(shì)+工具+實(shí)踐=DevOps&Docker業(yè)級(jí)落地

    摘要:的設(shè)計(jì)模式的設(shè)計(jì)模式以持續(xù)集成持續(xù)測(cè)試持續(xù)交付和持續(xù)部署為中心,自動(dòng)化協(xié)作和持續(xù)監(jiān)控是中使用的一些其他設(shè)計(jì)模式。持續(xù)集成持續(xù)集成是不斷地將源代碼集成到一個(gè)新的構(gòu)建或發(fā)布的過程,源代碼可以在本地存儲(chǔ)中,也可以在或中。 showImg(https://segmentfault.com/img/remote/1460000010452455); 識(shí)別二維碼報(bào)名活動(dòng) 8月19日,來(lái)自微軟、數(shù)人...

    stormjun 評(píng)論0 收藏0
  • 2019年微服務(wù)實(shí)踐第一課,網(wǎng)易&諧云&蘑菇街&奧思技術(shù)大咖深度分享

    摘要:本次演講將介紹蘑菇街微服務(wù)治理體系經(jīng)歷的架構(gòu)演進(jìn)歷程,面臨的技術(shù)難點(diǎn)和解決思路。年加入蘑菇街,目前負(fù)責(zé)蘑菇街內(nèi)部中間件平臺(tái),包括分布式服務(wù)通信框架配置中心服務(wù)發(fā)現(xiàn)消息隊(duì)列等其他服務(wù)基礎(chǔ)設(shè)施等項(xiàng)目。文章來(lái)源網(wǎng)易云社區(qū) 微服務(wù)的概念最早由Martin Fowler與James Lewis于2014年共同提出,核心思想是圍繞業(yè)務(wù)能力組織服務(wù),各個(gè)微服務(wù)可被獨(dú)立部署,服務(wù)間是松耦合的關(guān)系,以及...

    genedna 評(píng)論0 收藏0
  • 2021年8月國(guó)產(chǎn)數(shù)據(jù)庫(kù)大事記

    摘要:本文整理了年月國(guó)產(chǎn)數(shù)據(jù)庫(kù)大事件和重要產(chǎn)品發(fā)布消息。柏睿數(shù)據(jù)庫(kù)加速安全卡面向全球重磅發(fā)布。月日,在全球數(shù)字經(jīng)濟(jì)大會(huì)成果發(fā)布會(huì)上,中國(guó)移動(dòng)北京分公司與國(guó)產(chǎn)數(shù)據(jù)庫(kù)領(lǐng)域新銳企業(yè)柏睿數(shù)據(jù)簽署戰(zhàn)略合作協(xié)議。本次大賽主要面向全國(guó)愛好數(shù)據(jù)庫(kù)的高校學(xué)生。 本文整理了2021年8月國(guó)產(chǎn)數(shù)據(jù)庫(kù)大事件和重要產(chǎn)品發(fā)布消息。目錄8月國(guó)產(chǎn)數(shù)據(jù)庫(kù)大事記TOP108月國(guó)產(chǎn)數(shù)據(jù)庫(kù)大事記時(shí)間線產(chǎn)品/版本發(fā)布兼容認(rèn)證8月排行榜新增...

    Scorpion 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<