Skip to content

Instantly share code, notes, and snippets.

@hurtigcodes
Last active April 20, 2023 08:56
Show Gist options
  • Save hurtigcodes/67407e9a01a95a7ee2c632c5d659054a to your computer and use it in GitHub Desktop.
Save hurtigcodes/67407e9a01a95a7ee2c632c5d659054a to your computer and use it in GitHub Desktop.
Redirect requests with Spring
@Hidden
@GetMapping("/")
public ModelAndView redirect(ModelMap model) {
// model.addAttribute("attribute", "redirectWithRedirectPrefix");
return new ModelAndView("redirect:/swagger-ui.html", model);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment