Posts

Showing posts from April, 2022

Spring Boot and Angular Integration

Image
   Spring Boot and Angular Integration In this tutorial, we are going to build a spring boot application and will integrate angular application with it. We will first create an empty spring boot application. Then we will add angular application. Later we will integrate the angular application with the spring boot application in the way so that when spring boot application will build, then the angular application will built along with it.  The name of the application is going to be the-doctors-chamber . Note we are going to build a non-reactive spring application.  Prerequisites Before further proceeding, you need to have following tools installed in your system: Maven Git Now lets build the application.  Initial Spring Boot Application For generating a spring boot application, we need to go to https://start.spring.io and mention the dependencies. We will generate the project with the following properties: Project : Maven project Spring Boot : 2.6.7 Project Met...