October 2018
Intermediate to advanced
556 pages
15h 18m
English
After rebuilding and completing our application's startup, we should be able to access the mentioned web page in a browser at the following address: http://localhost:8080 (Spring Web MVC uses port 8080 for the web server as the default one. However, this can be changed in the application.properties file using the configuration line server.port=9090). After a few seconds, we may see the following output:
Connection openedTemperature: 14.71 CTemperature: 9.67 CTemperature: 19.02 CConnection closedConnection openedTemperature: 18.01 CTemperature: 16.17 C
As we can see, our web page reactively receives events, preserving both client and server resources. It also supports autoreconnect in the case of network ...
Read now
Unlock full access