Maven – How to create a Java web application project
In this tutorial, we will show you how to use Maven to manage a Java web project. At the end, we will create a Spring MVC web application, display a…
Maven basic tutorial | Overview Of Maven | Getting Started with Maven
As probably you know that building a software project typically consists of such tasks as downloading dependencies, putting additional jars on a classpath, compiling source code into binary code, running…
Top Frequently asked Spring Boot interview questions
Spring Boot is one of our key focus area of our site, we provide number of technology article around Spring Boot. In this article, we explore the Spring Boot Interview…
Java Interview Questions and Answers
Java 11 Interview Questions and Answers Java 11 Interview Questions and Answers Why Java 11 so crucial? What is difference between Oracle JDK and OpenJDK? Which commercial features are available…
Spring Annotations: RequestMapping Annotations, Core Framework Annotations, Spring Cloud Annotations, Testing Annotations
The Spring Framework is a very robust framework, released in 2002. Its core features can be applied to plain Java applications or extended to complex, modern web applications. With such…
How to Build Restful CRUD API for A Blog using Spring Boot, Rest API
Spring Boot, MySQL, Spring Security, JWT, JPA, Rest API Build Restful CRUD API for a blog using Spring Boot, Mysql, JPA and Hibernate. Steps to Setup 1. Clone the application…
Principles & Best practices of REST API Design
REST API (also known as RESTful API) is an application programming interface (API) that adheres to the REST architectural conventions and constraints used in client-server communication. REST stands for REpresentational…
Best Practices and Principles for API Design
APIs are created in ways that redefine and stretch products, services, and organizations. In this article, we’ll dig a little deeper into API design principles and best practices. Also, we’ll…
Quickstart RESTFul application with Spring Boot and Jersey
Spring is a popular Java application framework for creating enterprise applications. Spring Boot is the next step in evolution of Spring framework. It helps create stand-alone, production-grade Spring based applications…
Adding Role Based Security with Spring Boot REST APIs
Learn to create JAX-RS 2.0 REST APIs using Spring Boot and Jersey framework, and add role based security using JAX-RS annotations e.g. @PermitAll, @RolesAllowed or @DenyAll.