Spring Boot를 통해 controller를 만드는 방법이다. Controller를 통해 url 매핑을 하고, 그 url을 통해 function에 접근할 수 있다.MainController1234567891011121314package com.ll.app; import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.ResponseBody; @Controllerpublic class MainController { @GetMapping("/poo") // url/poo로 접근 가능 ..