In this post I will show you how to redirect or direct the user to another URL within the method of a controller in the Spring Boot framework.
Redirecting to another URL in Spring Boot is very useful when the user does a certain action and we must return it to the main page.
To make a redirect, simply create the method in the Controller and return a String
.
Within the method, return a string with the following format:
redirect:/new_path/here
Let’s see a very simple example. I have my Spring Boot controller called ProductosController.java, inside it I must do a redirect within the method called guardarProducto
.
To do this, I do the following:
@PostMapping(value = "/agregar")
public String guardarProducto(@ModelAttribute Producto producto) {
productosRepository.save(producto);
return "redirect:/productos/agregar";
}
On line 2 I define the method; It is very important to return a String
.
Finally on line 4 we redirect to /productos/agregar
using redirect:
.
When the user calls that method, a redirect to that route will be done, after saving the Producto
entity.
Do not put the @ResponseBody
annotation in the definition of your method, because if you do, the redirect will not work.
In the last months I have been working on a ticket designer to print on…
In this post you will learn how to use the Origin Private File System with…
In this post you will learn how to download a file in the background using…
In this post I will show you how to use SQLite3 directly in the web…
In this tutorial, we'll explore how to effortlessly print receipts, invoices, and tickets on a…
When printing receipts on thermal printers (ESC POS) sometimes it is needed to print images…
Esta web usa cookies.
Ver comentarios
Do you know how redirect from Spring Controller to React page?