This project shows Daily and Hourly basis weather forecast service.Call this service to get Updated forecast data
https://api.open-meteo.com/v1/forecast
Code pull from repository. Project import as Maven Project in IDE. Start/Run database server. Import weather_app.sql in database from project/ folder (structure and data) Update following DB server credential in application.properties file (if needed)
spring.datasource.username=root spring.datasource.password=
Build and Run the application Application will run on browser at http://localhost:8080
Login credential :
user name : admin passoword : admin1234
MainLayout.javainsrc/main/javacontains the navigation setup (i.e., the side/top bar and the main menu).modelpackage insrc/main/java/backendcontains entities of the application.repositorypackage insrc/main/java/backendcontains the repository interfaces of the application.servicepackage insrc/main/java/backendcontains the service classes of the application.viewspackage insrc/main/javacontains the server-side Java views of your application.viewsfolder infrontend/contains the client-side JavaScript views of your application.