Java, Software development

Understanding Data Projection in Spring Boot with Hibernate

This article will delve into data projection in the context of Spring Boot and Hibernate. This blog will examine the significance of data projection, its advantages, and disadvantages. Furthermore, I will provide a comprehensive explanation of how to implement it in your Spring Boot applications efficiently. What is data Projection? ...

by Ankit Kumar
Tag: SpringBoot
18-Apr-2024

AWS, Java

Setting Up Amazon DynamoDB Locally: A Comprehensive Guide

Introduction In modern application development, DynamoDB has emerged as a robust choice for managing NoSQL databases in the cloud. However, developers often need a local environment for testing, debugging, and even offline development. This blog will dive into setting up DynamoDB locally within a Java Spring Boot application, enabling...

by bhuva.pravinbhai
Tag: SpringBoot
15-Feb-2024

Grails, Java

Getting Started With Azure Blob Service Using Grails

Many of you already know about Microsoft Azure, which is a cloud based computing platform infrastructure for deploying, and managing applications and services globally. One of its most useful service is the blob service, which is a service for storing large amounts of unstructured data, whether text or binary data which is easily...

by Sagar Mal Shankhala
Tag: SpringBoot
08-Jun-2016

Grails, Java

Auto compilation in java springboot application

To run springboot appllication there is a task "bootRun" which compile and run the application for one deployment lifecyle. This is good enough for the production, where auto compilation is not required. In the dev environment auto compilation is used to avoid recompilation. Also it is very much needed to speed up the development time...

by Sanchit
Tag: SpringBoot
15-May-2016

Technology

Springboot Applications automation using Jenkins

Building compressed files of Springboot application is a tedious task and its continuous deployment using Jenkins is even more so. To simplify the above predicament, a new Gradle plugin in Jenkins has been used. So, our objective in this blog  is to make use of the relation between Gradle and Springboot. Let us take it further. ...

by Prakashul
Tag: SpringBoot
09-Dec-2015

Java, Technology

How to allow Cross Domain Ajax calls to an Application in Spring Boot Application

You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to Allow-Origin : {your domain's} or you can use a wild card "*"  to allow the calls from all domains. You can even Define the Custom Headers your application supports by defining them in a comma separated format ,...

by Ekansh Rastogi
Tag: SpringBoot
18-Nov-2015

Technology

Integrating SpringBoot with Gradle

Springboot support is provided by most of the build tools e.g. Gradle and Maven. Though grails 3.x comes with Springboot and gradle integration, there might come scenarios where you just want to create a very small and simple build that does specific task e.g. a build that will just run some threads and trigger some rabbitmq messages. Now...

by Vinay Prajapati
Tag: SpringBoot
29-Jul-2015