In this tutorial, we are going to create a simple Web-based To Do Application using the following technologies: Spring BootSpring MVCSpring SecurityBootstrap By the end of this tutorial, you will be able to create a simple web application which contains the following functionalities: LoginTo Do ListAdd To DoUpdate To DoDelete To DoLogout View the full … Continue reading Creating a todo application with Spring MVC
Tag: spring
Adding a MySQL Database to our Spring Rest Api
In this tutorial we walk through the steps to add a database connection to our rest api. Previously we created a rest api using spring. We used mock data but now we use real data from a database.
Create a simple Events API with Spring Boot in Java
In this tutorial we look at creating a JSON web service using Spring. Spring can using simple java classes to create a application quickly. Annotations do all the hard work for you. Here we create a rest controller which responds to GET, PUT, POST, DELETE request.