Linux下Jetty 9安装部署(2)

[root@linuxidc ~]# cd /usr/local/jetty/webapps/
[root@linuxidc webapps]# mkdir test
[root@linuxidc webapps]# cd test
[root@linuxidc test]# vi test.jsp
<html>
<body>
<h4>simple test</h4>
<%--echo hello world--%>
<%@page language="java"%>
<%="Hello World"%>
</body>
</html>

[root@linuxidc ~]# cd /usr/local/jetty/
[root@linuxidc jetty]# nohup java -jar start.jar & #拖至后台运行。
2016-10-27 21:11:20.290:INFO::main: Logging initialized @653ms
2016-10-27 21:11:20.356:WARN:oejs.HomeBaseWarning:main: This instance of Jetty is not running from a separate {jetty.base} directory, this is not recommended.  See documentation at
2016-10-27 21:11:20.636:INFO:oejs.Server:main: jetty-9.2.6.v20141205
2016-10-27 21:11:20.665:INFO:oejdp.ScanningAppProvider:main: Deployment monitor [file:/usr/local/jetty/webapps/] at interval 1
2016-10-27 21:11:21.544:INFO:oejsh.ContextHandler:main: Started o.e.j.w.WebAppContext@166f10ef{/test,file:/usr/local/jetty/webapps/test/,AVAILABLE}{/test}
2016-10-27 21:11:21.571:INFO:oejs.ServerConnector:main: Started ServerConnector@3cb3600d{HTTP/1.1}{0.0.0.0:8080}
2016-10-27 21:11:21.571:INFO:oejs.Server:main: Started @1935ms

或者进去bin目录执行命令./jetty.sh start

如下图:

Linux下Jetty 9安装部署

至此完成了jetty的部署。

Jetty服务器的安装配置详解

使用Jetty作为嵌入式服务器

Jetty 源码分析

Jetty安装学习并展示

Jetty在Eclipse中的安装

Linux(RedHat 5.8)下 安装Jetty 部署 使用 

Jetty 的详细介绍请点这里
Jetty 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/70e39ebe87e12e3ae47d8220fd592a80.html