Basic CRUD Application Using Spring Boot REST Web Service with AngularJS
Basic CRUD Application Using Spring Boot REST Web Service with AngularJS In my previous blog , we learned about how easy to develop RESTful Web Service with Spring Boot. Now we are focusing only on front-end. Today we learn about how to consume RESTful Web Service using AngularJS. We also use thymleaf for Page Template and Bootstrap for some styling purpose. Here is the final look of our Basic AngularJS CRUD Application. Final Look of AngularJS CRUD Application Here is the project structure which extends from previous one. Project Structure Now Fisrt create an Index.html file as shown above. Index.html <!DOCTYPE html > < html lang= "en" xmlns= "http://www.w3.org/1999/xhtml" xmlns: th = "http://www.thymeleaf.org" xmlns: layout = "http://www.w3.org/1999/xhtml" > < head th :replace= "fragments/header :: head" ></ head > < body ng-app= "app" ng-c...