Back/JSP
Servlet 프로젝트 생성하기
soyeon26
2022. 1. 18. 04:41
Servlet 프로젝트 생성하기
프로젝트를 처음 실행하면 Server를 만들어준 후 build Path를 추가해준다.
그 다음 프로젝트 생성!
doGet 메소드에
PrintWriter out = response.getWriter();
out.print("<p>Hellp Sevlet</p>");
추가해주고 서버를 실행한다.