Posts

Showing posts from June, 2022

Deploying a Spring Boot Web Application on Azure App Service

Image
Hello everyone, Hope you are doing well. In this tutorial, you will learn to how to deploy the Spring Boot application to Azure App Services using Azure Portal. A little bit of Background Azure App Service Azure App Service is an HTTP-based service for hosting web applications, REST APIs, and mobile backends. You can develop in your favourite language, be it .NET, .NET Core, Java, Ruby, Node.js, PHP, or Python. Applications run and scale with ease on both Windows and Linux-based environments. More Info -  https://docs.microsoft.com/en-us/azure/app-service/overview Spring Boot Spring Boot makes it easy to create stand-alone, production-grade Spring-based Applications that you can "just run". More Info -  https://spring.io/projects/spring-boot GitHub Actions GitHub Actions helps you automate your software development workflows from within GitHub. You can deploy workflows in the same place where you store code and collaborate on pull requests and issues.  In GitHub Actions, ...

Dockerize Spring Boot Application and Deploy Docker Image To Azure App Service Using GitHub Actions

Image
Hello everyone, Hope you are doing well. In this tutorial, you will learn how to d ockerize the spring boot application and deploy the docker image to the Azure app service using GitHub actions. A little bit of Background Azure App Service (Containerization and Docker ) Dockerize your app and host a custom Windows or Linux container in App Service. Run multi-container apps with Docker Compose. Migrate your Docker skills directly to App Service. More Info -  https://docs.microsoft.com/en-us/azure/app-service/overview Azure Container Registry Azure Container Registry allows you to build, store, and manage container images and artifacts in a private registry for all types of container deployments. Use Azure container registries with your existing container development and deployment pipelines. Use Azure Container Registry Tasks to build container images in Azure on-demand, or automate builds triggered by source code updates, updates to a container's base image, or timers. More Info -...

Java, Spring Boot Mini Project - Library Management System - Download

Image
Hello everyone, Hope you are doing well. Here, we provide a Library Management System mini-project for beginners, it's free for download. Maybe you can build more on top of this project and create your own product, that's all about you. The source code download link is provided at the end of this post. 1. Benefit of this project You could cover the following technologies and features by learning and debugging this mini project. Java 17 Java Stream Java Lamda Expressions Java Records Functional programming Object-oriented programming var Keyword in Java Generics in Java Java Switch Spring boot 2.6.4 Spring Security Thymeleaf template engine OpenCSV Spring Data JPA Server Side Pagination H2 Database  Bootstrap HTML CSS and more... 2. Objective Of Spring Boot On Library Management System The main objective of this project is to manage the details of the books, author, category, and publisher. Only Admin/Librarian will manage all these activities. Also, they can export the data in ...