Languages
[Edit]
EN

Java - spring page URL redirection

9 points
Created by:
Shri
8550

In Spring Freamwork it is possible to make url redirection in following way.

1. redirection:my_url prefix example

RedirectionExampleController.java file:

package com.example;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class RedirectionExampleController {

    @RequestMapping(value = "/redirect-to-my-final-page", method = RequestMethod.GET)
    public String redirectToMyFinalPage() {
        return "redirect:/my-final-page";
    }

    @RequestMapping(value = "/my-final-page", method = RequestMethod.GET)
    @ResponseBody
    public String myFinalPage() {
        return "This is my final page.";
    }
}

 Running:

  1. Run server, e.g. on localhost:8080
  2. Open in browser following link: http://localhost:8080/redirect-to-my-final-page

Result:

Note: web page should be redirected to http://localhost:8080/my-final-page.

2. References

  1. Redirecting - Spring Docs 

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join