ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 3. 이클립스 - 테스트
    개발 관련/JAVA 2011. 12. 8. 14:25
    Jsp & Servlet 테스트는 
    New - Web - Dynamic Web Project 로 해서 폴더 생성
    해당 폴더에서 New - Servlet 선택

    Class name : HelloServlet
    Next - URL mappings 에서 서블릿 경로를 변경 가능함 - Next - 
    doPost, doGet이 기본인데 테스트이니
    doGet만 체크 하고 Finish


     아래와 같이 코딩


    import java.io.IOException;
    import java.io.PrintWriter;

    import javax.servlet.ServletException;
    import javax.servlet.annotation.WebServlet;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;

    /**
     * Servlet implementation class HelloServlet
     */
    @WebServlet("/Hello")
    public class Hello extends HttpServlet {
    private static final long serialVersionUID = 1L;
           
        /**
         * @see HttpServlet#HttpServlet()
         */
        public Hello() {
            super();
            // TODO Auto-generated constructor stub
        }

    /**
    * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
    */
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("<html><body>");
    out.println("Hello Servlet!!!");
    out.println("</body></html>");
    }

    }

    저장 후에  
    생성한 
    Dynamic Web Project 폴더에서 Run As -  Run on Server 클릭
    톰캣 버전 클릭 - Next - 해당 프로젝트 명 클릭 - Finish

    url 에서 서블릿 url을 입력(기본이 /Hello)

     

     

     

     

    '개발 관련 > JAVA' 카테고리의 다른 글

    java encoding  (0) 2012.02.21
    4. 이클립스 - 한글 API  (0) 2011.12.09
    2. 이클립스 - Web Tools Platform 설치 및 설정  (0) 2011.12.08
    1. 이클립스 설치 및 환경 설정  (0) 2011.12.08
    JAVA & TOMCAT 설치 및 환경 설정  (0) 2011.12.07
Designed by Tistory.