C'est la procédure de préparation pour Hands-on to touch Akka from Java.
git clone [email protected]:yugolf/akka-in-action-java.git
Lancer le test
mvn test
Résultat d'exécution
[INFO] Scanning for projects...
[INFO]
[INFO] --------------------------< com:goticks-java >--------------------------
[INFO] Building goticks-java 1.0
[INFO] --------------------------------[ jar ]---------------------------------
(réduction)
Results :
Tests run: 14, Failures: 0, Errors: 0, Skipped: 0
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 12.740 s
[INFO] Finished at: 2018-12-08T23:19:20+09:00
[INFO] ------------------------------------------------------------------------
Démarrez le serveur
mvn compile exec:exec
Requête HTTP
http POST localhost:5000/events/JJUG/ tickets:=5
Réponse HTTP
HTTP/1.1 201 Created
Content-Length: 27
Content-Type: application/json
Date: Sat, 08 Dec 2018 14:36:29 GMT
Server: GoTicks.com REST API
{
"name": "JJUG",
"tickets": 5
}
Requête HTTP (liste d'événements)
http GET localhost:5000/events/
Résultat d'exécution
HTTP/1.1 200 OK
Content-Length: 40
Content-Type: application/json
Date: Sat, 08 Dec 2018 14:37:24 GMT
Server: GoTicks.com REST API
{
"events": [
{
"name": "JJUG",
"tickets": 5
}
]
}
) depuis
Project from Existing Sources ...`
Terminer
pour commencer l'importation du projetC'est tout pour la préparation. Merci pour votre soutien.
Les travaux pratiques ont été réalisés dans la branche «pratique».
Changer de branche
git checkout handson
Recommended Posts