egunay$ git clone https://github.com/gunayus/s1p-demo.git
egunay$ cd s1p-demo
s1p-demo egunay$ mvn clean install
java -jar weather-service-stub-runner/target/weather-service-stub-runner-0.0.1-SNAPSHOT.jar --stubrunner.ids=org.springmeetup:weather-service:0.0.1-SNAPSHOT:8080 --server.port=8081
test the API stub
curl 'http://localhost:8081/stubs' -i
HTTP/1.1 200
X-Application-Context: application:8081
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Sun, 03 Dec 2017 19:41:35 GMT
{
"org.springmeetup:weather-service:0.0.1-SNAPSHOT:stubs":8080
}
curl 'http://localhost:8080/weather/current/TR/Denizli' -i
HTTP/1.1 200 OK
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(9.4.7.v20170914)
{
"temperature": 39.15,
"weatherId": 800,
"weatherIcon": "01d",
"name": "Denizli",
"timestamp": 1505824065
}
ls -al weather-service/target/generated-docs/
total 184
drwxr-xr-x 4 egunay staff 136 Dec 3 11:07 .
drwxr-xr-x 15 egunay staff 510 Dec 3 11:07 ..
-rw-r--r-- 1 egunay staff 35407 Dec 3 11:07 index.html
-rw-r--r-- 1 egunay staff 56901 Dec 3 11:07 index.pdf
open weather-service/target/generated-docs/index.pdf
open weather-service/target/generated-docs/index.html
cd config-server/
mvn spring-boot:run
...
2017-12-03 12:41:12.830 INFO 75066 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8888 (http)
cd service-registry/
mvn spring-boot:run
...
2017-12-03 12:46:00.516 INFO 75257 --- [ Thread-11] e.s.EurekaServerInitializerConfiguration : Started Eureka Server
2017-12-03 12:46:00.620 INFO 75257 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8761 (http)
cd weather-service
mvn spring-boot:run
test the API :
curl http://localhost:8010/weather/current/TR/Ankara -i
HTTP/1.1 200
X-Application-Context: weather-service:8010
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Tue, 05 Dec 2017 19:32:26 GMT
{
"temperature":274.15,
"weatherId":803,
"weatherIcon":"04n",
"name":"Ankara",
"timestamp":1512496200.000000000
}
cd weather-web
mvn spring-boot:run
Open the url http://localhost:8000 from your favourite browser
https://www.youtube.com/watch?v=MDydAqL4mYE