pom.xml 에 의존성 추가 org.apache.tomcat.embed tomcat-embed-jasper controller 생성package com.hyukjin.springboot.myfirstwebapp.hello;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.ResponseBody;import org.springframework.web.bind.annotation.RestController;@Controllerpublic class SayHelloC..