使用jetty默认启动

我们的需求是这样的。通过程序来配置jetty的服务-启动。要直接在 浏览器中输入http://IP:8083

ok。直接跳转到欢迎界面。下面来看如何来做。

 public void start() throws Exception {
  server.addListener(":" + this.port);
  HttpContext context = server.getContext("/index.html"); //关键部分 ,这里就是要在webapps下有一个 index.html.指向的就是这个html.当然也可以是其它的比如说:**.jsp
  WebApplicationHandler wah = new WebApplicationHandler();

  for (HttpHandler httpHandler : httpHandlers) {
   context.addHandler(httpHandler);
  }

  server.start();
  server.join();

 

//这个方法主要是用来配置jetty服务启动的路径的。包括该路径下的jsp等

public void addContext(String webappPath, String contextPath)
   throws Exception, IOException {
  ServletHttpContext hc = new ServletHttpContext();
  Resource rc = Resource.newResource(webappPath);
  hc.setBaseResource(rc);
  hc.setContextPath(contextPath);
  hc.addServlet("JSP", "*.jsp", "org.apache.jasper.servlet.JspServlet");
  hc.addHandler(new ResourceHandler());
  server.addContext(hc);

 }
 }

都准备放弃明天搞了,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值