Skip to main content

Posts

Showing posts from May, 2017

Spring Boot

Spring is a very popular Java-based framework for building web and enterprise applications. Unlike many other frameworks, which focus on only one area, Spring framework provides a wide verity of features addressing the modern business needs via its portfolio projects. Spring framework provides flexibility to configure beans in multiple ways such as XML, Annotations, and JavaConfig. With the number of features increased the complexity also gets increased and configuring Spring applications becomes tedious and error-prone. Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run". We take an opinionated view of the Spring platform and third-party libraries so you can get started with minimum effort. Most Spring Boot applications need very little Spring configuration. If you are a Java developer then there is a high chance that you might have heard about Spring framework and probably have used it in your project...

Basic introduction to MEAN.JS

What is MEAN.JS? MEAN.JS is a full-stack JavaScript solution that helps you build fast and maintainable production web applications using MongoDB, Express, AngularJS, and Node.js. Node.js   is a server side JavaScript execution environment. It’s a platform built on Google Chrome’s V8 JavaScript runtime. It helps in building highly scalable and concurrent applications rapidly. Express   is lightweight framework used to build web applications in Node. It provides a number of robust features for building single and multi page web application. Express is inspired by the popular Ruby framework,   Sinatra . MongoDB   is a schemaless NoSQL database system. MongoDB saves data in binary JSON format which makes it easier to pass data between client and server. AngularJS   is a JavaScript framework developed by Google. It provides some awesome features like the two-way data binding. It’s a complete solution for rapid and awesome front end development....