728x90 내장서버1 Spring boot 내장 Servlet Container 소스코드 public static void main(String[] args) throws LifecycleException { Tomcat tomcat = new Tomcat();//톰캣 객체 생성 tomcat.setPort(8080);//포트 설정 Context context= tomcat.addContext("/", "/"); HttpServlet servlet = new HttpServlet() {//서블릿 만들기 @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { PrintWriter printWriter = resp.getWriter.. 2022. 1. 29. 이전 1 다음 728x90