0

Is there any way to redirect to specific URL in rest controller in spring boot using by servlet and not change the URL? for example I'm gonna redirect user to google site but URL and context is accessible!

@RequestMapping("/redirecting")
public RedirectView localRedirect() {
    RedirectView redirectView = new RedirectView();
    redirectView.setUrl("http://google.com");
    return redirectView;
}
primElite
  • 11
  • 2

0 Answers0