jetty jsp 404 not found

3591 단어
Jetty 서버가 내장되어 있으며, 시작 후 jsp 페이지에 방문하여 404 NOT Found를 표시합니다.
소스 코드는 다음과 같습니다.
package soc.main;

import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.servlet.ServletHolder;
import org.eclipse.jetty.servlet.ServletContextHandler;
import org.glassfish.jersey.servlet.ServletContainer;
import org.springframework.web.context.ContextLoaderListener;
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;

import soc.config.ApplicationApi;
import soc.config.SpringJavaConfiguration;

public class SocMain {
	public static void main(String[] args) throws Exception {

		ApplicationApi applicationConfig = new ApplicationApi();
		ServletContainer servletContainer = new ServletContainer(applicationConfig);
		ServletHolder jerseyServlet = new ServletHolder(servletContainer);
		ServletContextHandler context = new ServletContextHandler(); jsp 404
		

		context.setClassLoader(Thread.currentThread().getContextClassLoader());
		context.addServlet(jerseyServlet, "/rest/*");

		context.setContextPath("/");
		context.setResourceBase("src/main/webapp");
		context.addEventListener(new ContextLoaderListener());
		// context.addEventListener(new RequestContextListener());

		context.setInitParameter("contextClass", AnnotationConfigWebApplicationContext.class.getName());
		context.setInitParameter("contextConfigLocation", SpringJavaConfiguration.class.getName());
		int port = 8080;
		if (args.length == 1) {
			port = Integer.parseInt(args[0]);
		}
		Server server = new Server(port);
		server.setHandler(context);
		try {
			server.start();
			server.join();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}

이 문제가 발생한 이유는 context는 Jetty-webapp 패키지 아래의 Web App Context를 사용하고, Jetty-servlet 패키지 아래의 Servlet Context Handler를 사용하면 jsp 페이지 not found에 접근할 수 있기 때문이다.수정된 코드는 다음과 같습니다.
package soc.main;

import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.servlet.ServletHolder;
import org.eclipse.jetty.webapp.WebAppContext;
import org.glassfish.jersey.servlet.ServletContainer;
import org.springframework.web.context.ContextLoaderListener;
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;

import soc.config.ApplicationApi;
import soc.config.SpringJavaConfiguration;

public class SocMain {
	public static void main(String[] args) throws Exception {

		ApplicationApi applicationConfig = new ApplicationApi();
		ServletContainer servletContainer = new ServletContainer(applicationConfig);
		ServletHolder jerseyServlet = new ServletHolder(servletContainer);
		// ServletContextHandler context = new ServletContextHandler();
		//  jsp 404Not Found

		WebAppContext context = new WebAppContext();

		context.setClassLoader(Thread.currentThread().getContextClassLoader());
		context.addServlet(jerseyServlet, "/rest/*");

		context.setContextPath("/");
		context.setResourceBase("src/main/webapp");
		context.addEventListener(new ContextLoaderListener());
		// context.addEventListener(new RequestContextListener());

		context.setInitParameter("contextClass", AnnotationConfigWebApplicationContext.class.getName());
		context.setInitParameter("contextConfigLocation", SpringJavaConfiguration.class.getName());
		int port = 8080;
		if (args.length == 1) {
			port = Integer.parseInt(args[0]);
		}
		Server server = new Server(port);
		server.setHandler(context);
		try {
			server.start();
			server.join();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}

좋은 웹페이지 즐겨찾기