Skip to content

Instantly share code, notes, and snippets.

@seyedsahil
Last active August 29, 2020 03:36
Show Gist options
  • Save seyedsahil/585b97c60dde0b0ed38a5ecf156d6567 to your computer and use it in GitHub Desktop.
Save seyedsahil/585b97c60dde0b0ed38a5ecf156d6567 to your computer and use it in GitHub Desktop.
Web controller for index page
package org.sydlabz.demo;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class IndexPageController {
@GetMapping("/")
public String onIndexPage() {
return "index";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment