Skip to content

Instantly share code, notes, and snippets.

@minikuma
Created January 7, 2019 15:08
Show Gist options
  • Save minikuma/a5520af432387ca7a22ff1b2a8f04a95 to your computer and use it in GitHub Desktop.
Save minikuma/a5520af432387ca7a22ff1b2a8f04a95 to your computer and use it in GitHub Desktop.
@Controller
public class HomeController {
@RequestMapping(value = "/" ,method = RequestMethod.GET)
public String home() {
return "home"; //view name
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment