Spring

Spring MVC Example — step-by-step DevOps tutorial on Progressive Robot

Spring MVC Example

URL: https://www.progressiverobot.com/spring-mvc-example/ Welcome to Spring MVC Example. Sometime back in [Spring MVC Tutorial](/community/tutorials/spring-mvc-tutorial), I explained how to create Spring MVC application using Spring Tool Suite. But today, I will be creating a basic hello world spring MVC application using maven and Eclipse. Spring MVC Example Spring MVC is based on Model-View-Controller architecture. Below image shows […]

Read more
Spring Security Example Tutorial — step-by-step Security tutorial on Progressive Robot

Spring Security Example Tutorial

URL: https://www.progressiverobot.com/spring-security-example-tutorial/ Spring Security provides ways to perform authentication and authorization in a web application. We can use spring security in any servlet based web application. Spring Security ![spring security example tutorial](images/spring-security-example-tutorial-section-1.png) Some of the benefits of using Spring Security are: Proven technology, it's better to use this than reinvent the wheel. Security is something […]

Read more
Spring Boot MongoDB — step-by-step Databases tutorial on Progressive Robot

Spring Boot MongoDB

URL: https://www.progressiverobot.com/spring-boot-mongodb/ Welcome to Spring Boot [MongoDB](/community/tutorials/mongodb-tutorial) example. Spring Boot is the easiest way to spin a spring project quickly and MongoDB is the most popular NoSQL database. Let's see how to integrate spring with MongoDB database. Spring Boot MongoDB We need following APIs to work with Spring Boot and MongoDB database. Spring Data MongoDB […]

Read more
Spring MVC Exception Handling - @ControllerAdvice, @ExceptionHandler, HandlerExceptionResolver — step-by-step DevOps tutorial on Progressive Robot

Spring MVC Exception Handling – @ControllerAdvice, @ExceptionHandler, HandlerExceptionResolver

URL: https://www.progressiverobot.com/spring-mvc-exception-handling-controlleradvice-exceptionhandler-handlerexceptionresolver/ Spring MVC Exception Handling is very important to make sure you are not sending server exceptions to client. Today we will look into Spring Exception Handling using @ExceptionHandler, @ControllerAdvice and HandlerExceptionResolver. Any [web application](/community/tutorials/java-web-application-tutorial-for-beginners "Java Web Application Tutorial for Beginners") requires good design for exception handling because we don't want to serve container […]

Read more
Spring Security Role Based Access Authorization Example — step-by-step Security tutorial on Progressive Robot

Spring Security Role Based Access Authorization Example

URL: https://www.progressiverobot.com/spring-security-role-based-access-authorization-example/ Today we will look into spring security role based access and authorization example. However before reading this post, please go through my previous post about "[Spring 4 Security MVC Login Logout Example](/community/tutorials/spring-4-security-mvc-login-logout-example)" to get some basic knowledge about Spring 4 Security. Spring Security Role In this post, we will discuss how to define, […]

Read more
CHAT