Servlet
클래스는HttpServlet
를 상속 받음1
2
3
4
5"/Hworld") (
public class Helloworld extends HttpServlet {
private static final long serialVersionUID = 1L;
...
}요청처리객체 및 응답처리객체를 톰캣에서 받음
1
2
3protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.getWriter().append("Served at: ").append(request.getContextPath());
}get
방식,post
방식 -form
태그method
속성값doGet
호출 : URL값으로 정보가 전송되어 보안에 약함doPost
호출 :header
를 이용해 정보가 전송되어 보안에 강함
doGet()
html
내form
태그의method
속성이get
일 경우 호출- 웹브라우저 주소창을 이용하여
servlet
을 요청하면 호출
doPost()
html
내form
태그의method
속성이post
일 경우 호출
Context Path
WAS
(Web Application Server)에서 웹애플리케이션을 구분하기위한 Path- 이클립스에서 프로젝트를 생성하면 자동으로
server.xml
에 추가
Home | Archives | Categories | Tags | About |
|