Guest User

Untitled

a guest
Nov 14th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. @Controller
  2. public class HtmlPageController {
  3. @RequestMapping(value = "/some/path/test", method = RequestMethod.GET)
  4. public String getTestPage() {
  5. return "test.html";
  6. }
  7. }
  8.  
  9. @Controller
  10. public class HtmlPageController {
  11. @RequestMapping(value = "/some/path/test", method = RequestMethod.GET)
  12. public String getTestPage() {
  13. return "test";
  14. }
  15. }
Add Comment
Please, Sign In to add comment