Home

Image
Introduction In this article, I am going to explain how to create a Spring Boot Application in different ways. Spring Boot had been built for Rapid Application Development. In this article, we will explore the different options of creating Spring Boot projects with Maven and Eclipse. You will learn: Ø   Create Spring Boot Project with Spring Initializr. Ø   Create Spring Boot Project with Spring Starter Eclipse Plugin. Ø   Generate Spring Boot Project with a simple Maven Project in Eclipse. Create Spring Boot Project with Spring Initializr The best way of creating Spring Boot application is by using Spring Initializr. Let’s first start by opening http//start.spring.io. As you already know, you can use either Maven or Gradle to build, however we will use Maven in this tutorial. Steps: 1.       Select Maven Project, Java and Spring Boot version as 2.0.1 2.       Change the Group/Package name. Enter as com.eai.integration 3.       Change the Artifact to SpringBoot-
Image
Introduction Spring Boot makes it easy to create stand-alone, production-grade Spring-based Applications that you can run. We take an opinionated view of the Spring platform and third-party libraries, so that you can get started with minimum fuss. Most Spring Boot applications need very little Spring configuration. You can use Spring Boot to create Java applications that can be started by using java -jar or more traditional war deployments. The Spring team decided they wanted to provide developers with some utilities which relatively automate the configuration procedures and speeds up the process of building and deploying Spring applications, so they invented Spring Boot. Spring Boot is a utility project which aims to make it easy to build Spring-based, production-ready applications and services with minimum fuss. It provides the shortest way to get a Spring web application up and running with the smallest line of code/configuration out-of-the-box. Overview Spring Boot
Image
Introduction In this article, I am going to explain how to develop a Spring Boot Application and configure web application to run on SSL (HTTPS) with self-signed certificate. Also I am going to explain the creation of SSL cert and import. Overview Before moving further, let’s understand what specific terms such as SSL or TLS means. SSL – stands for Secure Sockets Layer. It is the industry standard protocol for keeping an internet connection secure by safeguarding all sensitive data that is being sent between two systems, preventing hackers from reading and modifying any information transferred. TLS – (Transport Layer Security) is an updated, more secure, version of SSL. It adds more features. Today, certificates provided by certificate authorities are based on TLS only. But regarding secured communication over network, the term SSL is still common as it is the old and just become popular among community. HTTPS – (Hyper Text Transfer Protocol Secure) appears in the UR