Servlet 의 배치 개발 세부 사항 및 주의사항
<servlet>
<servlet-name>servlet servlet-name>
<servlet-class> . servlet-class>
servlet>
<servlet-mapping>
<servlet-name>servlet servlet-name>
<url-pattern>/ servlet url-pattern>
servlet-mapping>
웹 xml 파일 을 배치 합 니 다.
마지막: 자바 파일 을 쓰 는 것 입 니 다. classes 폴 더 (이름 이 틀 리 지 않도록 주의 하 세 요) 에서 자바 파일 을 만 들 면 이름 이 마음대로 지 어 집 니 다. 이 자바 파일 류 는 인터페이스 가 있어 야 하기 때문에 해당 하 는 방법 을 완성 해 야 합 니 다. 해당 하 는 내용 은 다음 과 같 습 니 다.
package com_1;
import javax.servlet.*;
import javax.servlet.http.*;
public class firstservlet implements Servlet{
public void init(ServletConfig config) throws ServletException{
}
public ServletConfig getServletConfig(){
return null;
}
public void service(ServletRequest req,
ServletResponse res)
throws ServletException,
java.io.IOException{
res.getWriter().println("Hello"+new java.util.Date().toLocaleString());
}
public java.lang.String getServletInfo(){
return null;
}
public void destroy(){
}
}
이 어 이 파일 을 컴 파일 했 습 니 다. 컴 파일 명령 은 자바 c - d. 자바 파일 입 니 다.
이렇게 해서 우 리 는 대응 하 는 servlet 를 방문 하면 웹 페이지 에서 그 내용 을 볼 수 있다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.