Everything You Should Know About New Relic
The modern Java developer is expected to take on a variety of tasks. Engineers are increasingly required to participate in production operations in addition to implementing and testing new product …
The modern Java developer is expected to take on a variety of tasks. Engineers are increasingly required to participate in production operations in addition to implementing and testing new product …
To send an email using SMTP in Spring MVC or Spring Boot projects is pretty simple. In this post, I am going to share an easy method to send email …
How to send email in Spring Boot Project via SMTP Read More »
In this post, I am going to share two easy ways to change the tomcat port in Spring Boot projects. Basically, I am going to answer how to change the …
In this post, I am going to share how to show Hibernate SQL queries on the console log while running your Spring Boot project(s). Enable Hibernate SQL Queries Logging To …
A one-to-many association between the entities in JPA can be achieved using either of the  @ManyToOne or a @OneToMany annotations in Spring Boot. According to Vlad Mihalcea,  @ManyToOne annotation allows you to map …
@RequestParam in Spring Boot: By default, parameters with @RequestParam annotation are required. If you fail to provide parameters to such annotated endpoints, your request will fail. In such cases, you …
IntelliJ IDEA is the best Java IDE available today. It has many features that the Java developers find very handy. But the Ultimate version is something, not every developer can …
How to use IntelliJ IDEA Community version for Spring Projects Read More »
In this post, I am going to share a two-step approach to change the Spring Boot banner in your project. Create Your Own(Customized) Spring Boot Banner Create your customized Spring …
How to change the Spring Boot banner in your project? Read More »
Sometimes we require to access logged-in users in different services of the Spring Boot project. Spring Boot which uses Spring Security internally provides a SecurityContextHolder class. This class allows the lookup of the currently …
RESTFul file upload in Angular: In my last post titled RESTFul file upload using Spring Boot, as the title stands for, I have shared how to do the same. As …