ํ‹ฐ์Šคํ† ๋ฆฌ ๋ทฐ

๋ฐ˜์‘ํ˜•
ํด๋ž˜์Šค ๋งŒ๋“ค๊ธฐ

Package์™€ Name ์„ค์ • ํ•˜๊ณ  Finish

 

SampleController.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.springboot.boot01.controller;
 
import java.util.Arrays;
import java.util.List;
 
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
public class SampleController {
 
    @GetMapping("/hello")
    public String sayHello() throws Exception {
        return "hello world !";
    }
    
    @GetMapping("/hobbys")
    public List<String> hobbys() throws Exception {
        
        List<String> list = Arrays.asList("์ถ•๊ตฌ""๋…์„œ""์Œ์•…๊ฐ์ƒ""์ˆ˜๋ฉด");
        return list;
    }
}
 

 

hello์š”์ฒญ
hobbys์š”์ฒญ

์„œ๋ฒ„ ์‹คํ–‰ ํ›„ ๊ฐ๊ฐ์˜ ์š”์ฒญ์— ๋งž๋Š” ์‘๋‹ต์ด ๋œจ๋Š”์ง€ ํ™•์ธํ•œ๋‹ค.

๋ฐ˜์‘ํ˜•
๋Œ“๊ธ€