서블릿이란 (JSON, HttpServletRequest, HttpServletResponse)
🔷 Spring/MVC
2021. 8. 10. 19:57
서블릿 서블릿 사용을 위한 프로젝트 WAR, 롬복, 스프링 웹 설치 @ServletComponentScan // 서블릿 자동 등록 @SpringBootApplication public class HelloApplication { public static void main(String[] args) { SpringApplication.run(HelloApplication.class, args); } } ----------------http://localhost:8080/hello?username=kim url 입력 @WebServlet(name = "helloServlet", urlPatterns = "/hello") public class HelloServlet extends HttpServlet { @..
반응형