간단한 웹

URL 매핑

package backend.ohgnoy;  
  
import org.springframework.stereotype.Controller;  
import org.springframework.web.bind.annotation.GetMapping;  
  
@Controller  
public class MainController {  
    @GetMapping("/hello")  
    public void index(){  
        System.out.println("Hello, I'm ohgnoy");  
    }  
}

Pasted image 20250418163124.png

package backend.ohgnoy;  
  
import org.springframework.stereotype.Controller;  
import org.springframework.web.bind.annotation.GetMapping;  
import org.springframework.web.bind.annotation.ResponseBody;  
  
@Controller  
public class MainController {  
    @GetMapping("/hello")  
    @ResponseBody  
    public String index(){  
        return "Hello, I'm ohgnoy";  
    }  
}

Pasted image 20250418163307.png