I have a page with a series of images inserted in cells. I have in mind to make that according to which image you click, a common page loads in which within the controller it determines where it comes from. So that according to what image comes, do one thing or another within that common page.
@GetMapping(/comun/¿?¿?¿)
public String paginaComun(){
if (?¿?parametro?¿? = "imagen1") {
model.addAttribute("valor", "imagen1");
return "";
}
else if() .......
}
I use Thymealf in case it helps.