Eclipse에 내 파일 Calculator.war을 연결하는 응용 프로그램을 작성합니다.Embedded Jetty. JSP가 구성되지 않았습니다.
import java.util.Scanner;
import org.eclipse.jetty.server.*;
import org.eclipse.jetty.webapp.WebAppContext;
public class HelloWorld{
public static void main(String[] args) throws Exception {
Server server = new Server(1490);
WebAppContext webapp = new WebAppContext();
webapp.setContextPath("/");
webapp.setWar("D:/Calculator.war");
server.setHandler(webapp);
server.start();
Scanner console = new Scanner(System.in);
while(!console.nextLine().equals("stop"));
console.close();
server.stop();
}
}
내가 브라우저 링크 로컬 호스트에서 열 경우 : 내가 localhost를 작성하는 경우 "/ lib 디렉토리/JSP에 대한 JSP 구성되어 있지 및 떨어지게": 1490/ServletCalculator 모든 것이 OK입니다 1490 내가 오류 메시지가 나타납니다.
JAR에 프로젝트 jetty-all-8.1.7.v20120910.jar 및 servlet-api-3.0.jar에 연결되었습니다. 그런 다음/lib/jsp에서 jar를 연결하려고 시도했지만 성공하지 못했습니다. MAVEEN을 사용하지 마십시오 이 문제를 해결할 수 있습니까? 방법?
web.xml의 내용은 무엇입니까? – Elmer
이 답변이 유용 할 수도 있습니다. http://stackoverflow.com/questions/7160220/how-to-serve-jsp-files-using-jetty – Elmer
감사합니다. 정말 유용합니다! – Alex