Guest User

Untitled

a guest
May 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. import org.springframework.web.bind.annotation.RequestMapping;
  2. import org.springframework.web.bind.annotation.RestController;
  3.  
  4. @RestController //Restコントローラであること明示
  5. public class HelloController {
  6.  
  7. public HelloController() {
  8. super();
  9. }
  10.  
  11. @RequestMapping("/123") //アドレスと処理を紐づける
  12. public String index2() {
  13. return "test"; //戻り値のテキストがそのままhtmlに加工され表示される
  14. }
  15. }
Add Comment
Please, Sign In to add comment