博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
嵌入式embeddedjetty练习
阅读量:5761 次
发布时间:2019-06-18

本文共 3084 字,大约阅读时间需要 10 分钟。

hot3.png

package com.doctor.embeddedjetty;import java.net.URISyntaxException;import java.util.concurrent.TimeUnit;import org.eclipse.jetty.server.Server;import org.eclipse.jetty.servlet.ServletHolder;import org.eclipse.jetty.webapp.WebAppContext;import org.springframework.web.context.ContextLoaderListener;import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;import org.springframework.web.servlet.DispatcherServlet;/** * 标准spring 配置(java config) 嵌入式jetty9启动,支持jsp试图,测试用例看 * {@link ContentNegotiatingViewResolverPractice} ContentNegotiatingViewResolverPractice * @author doctor * * @since 2015年1月6日 下午10:40:16 */public class EmbeddedJettyServer3 {	private int port;	private String resourceBase;	private Class
springRootConfiguration = null; private Class
springMvcConfiguration = null; private Server server; public EmbeddedJettyServer3(String resourceBase, Class
springRootConfiguration, Class
springMvcConfiguration) { this(8080, resourceBase, springRootConfiguration, springMvcConfiguration); } /** * * @param port * @param resourceBase 注:这里是相对路径,web src/test/resources路径,绝对路径没判断 * @param springRootConfiguration * @param springMvcConfiguration */ public EmbeddedJettyServer3(int port, String resourceBase, Class
springRootConfiguration, Class
springMvcConfiguration) { this.port = port; this.resourceBase = resourceBase; this.springRootConfiguration = springRootConfiguration; this.springMvcConfiguration = springMvcConfiguration; init(); } public void init() { server = new Server(port); WebAppContext context = new WebAppContext(); context.setContextPath("/"); try { context.setResourceBase(this.getClass().getResource(resourceBase).toURI().toASCIIString()); } catch (URISyntaxException e) { // TODO Auto-generated catch block e.printStackTrace(); } server.setHandler(context); AnnotationConfigWebApplicationContext rootContext = new AnnotationConfigWebApplicationContext(); rootContext.register(this.springRootConfiguration); context.addEventListener(new ContextLoaderListener(rootContext)); AnnotationConfigWebApplicationContext mvcContext = new AnnotationConfigWebApplicationContext(); mvcContext.register(springMvcConfiguration); DispatcherServlet dispatcherServlet = new DispatcherServlet(mvcContext); context.addServlet(new ServletHolder(dispatcherServlet), "/");//处理jsp在WEB-INF目录下// context.addServlet(new ServletHolder(new JspServlet()), "*.jsp"); } public void start() throws Exception { if (server != null) { if (server.isStarting() || server.isStarted() || server.isRunning()) { return; } } TimeUnit.SECONDS.sleep(3); server.start(); } public void stop() throws Exception { if (server != null) { if (server.isRunning()) { server.stop(); } } } public void join() throws InterruptedException { if (server != null) { server.join(); } }}
测试代码
见:https://github.com/doctorwho1986/doctor/blob/master/springmvc-practice/src/test/java/com/doctor/springframework/web/view/ContentNegotiatingViewResolverPractice.java

转载于:https://my.oschina.net/doctor2014/blog/385880

你可能感兴趣的文章