everyone! Please, I have a Spring boot project in my computer and I need access an external thymeleaf file, but I have no idea how to do this.
Here is my code bellow
@GetMapping("/produtos")
public ModelAndView produtos(HttpServletRequest request, ProdutoFilter produtoFilter) {
ModelAndView mv = new ModelAndView("/product");
And I need to redirect this request to a external folder. A folder that it is not inside the project folders.
Thank you!