Jetty小计,比之tomcat调试还是不方便

  不需要额外的工程支持,不需要硬盘中有tomcat之类的额外文件
  Jetty的Debug:右键Debug as... Maven Builder

  Jetty相关的配置文件如下:

 <profiles>
<profile>
<id>frontend</id>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<httpConnector>
<port>8081</port>
</httpConnector>
<systemProperties>
<systemProperty>
<name>zipkin.service</name>
<value>frontend</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>backend</id>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<httpConnector>
<port>9000</port>
</httpConnector>
<systemProperties>
<systemProperty>
<name>zipkin.service</name>
<value>backend</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

  Jetty调试的时候,发现第三方的jar包跟不进去(即使下载了源码)。需要在debug 配置里面的Enviroment添加一下内容;

Jetty小计,比之tomcat调试还是不方便

 KEY: MAVEN_OPTS;
VALUE:runjdwp:transport=dt_socket,server=y,suspend=n,address=1066

  然后在source的tab下面添加一个External Archived文件即可(下面就是添加的source.jar):

Jetty小计,比之tomcat调试还是不方便

  到此处,Jetty虽然小巧,但是其实debug调试等还是很不方便;比如大量的因为第三方包,即使有了源码也是要通过添加方式来添加之后才能够进去;但是如果tomcat则不需要;所以如果发布了一小程序,想要让用户迅速启用,那么Jetty是一个非常不错的选择;但是如果是想要开发,调试,那么还是tomcat。

上一篇:debian 系统安装配置apache


下一篇:linux下用非root用户重启导致ssh无法连接的问题