In this appliction you will know how to create Location based web socket application with Spring Boot in simplest way.
- Maven 3 or any latest version
- JDK 1.8 / JDK 1.9 or any latest version
- Eclipse Kepler / Eclipse Juno / Eclipse Neon or any latest version
File > Import > Existing Maven Projects > Click
Next
> Select project root directory > ClickFinish
- Create Web Socket Endpoint that is receiving location from users.
- Web socket broadcast all user's location to all connected users.
- Display Map on page.
- User can select his location and press Live Button.
- Upon clicking on live button, his location will be shared every 10 seconds to the server via WEB SOCKET.
- Display all other user's location in the Map.
Server Side = Spring Boot for web application Spring Web Socket for managing socket communication from server side
Client Side = Html5 Geolocation from browser for getting user’s live actual location from web page SockJS for web socket communication from web page Bootstrap for web page design Jquery for web page interaction
In this project I haven’t used any database for storing the data. I have stored data in memory.
Bellow I have described screenshot of the application,
2) If user has entered username as UserA. Then, web page shows that user’s current location. In that time no other user is online so, public user’s data is blank.
5) After clicking on Live button on page in both the user’s screen, All connected user’s latest location is getting feed from server via web socket and current user continuously sending their location to web server from web page.
Right click to project > Run As > Spring Boot App
go to http://localhost:8080/
Rutvik Patel - rrpatel003@gmail.com
Distributed under the GPL V3.0 license. See LICENSE
for more information.