Posts

Showing posts from June, 2017

Application with AngularJS + Spring Boot

Image
In this tutorial, we will look at the application with AngularJS on the front-end and Spring-Boot in the back end. AngularJS is a JavaScript-based open-source front-end web application framework developed to address many of the challenges encountered in developing single-page applications. More information at https://angularjs.org/ Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run". Spring Boot favors convention over configuration and is designed to get you up and running as quickly as possible.More information at https://projects.spring.io/spring-boot/ Restangular is an AngularJS service  that simplifies common GET, POST, DELETE, and UPDATE requests with a minimum of client code. It's a perfect fit for any WebApp that consumes data from a RESTful API. More information at https://github.com/mgonto/restangular .  AngularJS Toaster is ...