Skip to content

Instantly share code, notes, and snippets.

@dashjim
Created October 9, 2015 04:00
Show Gist options
  • Save dashjim/b46232743402d436e826 to your computer and use it in GitHub Desktop.
Save dashjim/b46232743402d436e826 to your computer and use it in GitHub Desktop.
Spring MVC redirect / to api doucment.
package springfoxdemo.boot.swagger.web;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class HomeController {
@RequestMapping("/")
public String home() {
return "redirect:swagger-ui.html";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment