JFinal 中如何正确使用 Jetty9的姿势

最近遇到个需求,引入的依赖中引入了Jetty9,jfinal-jetty的开发环境是jetty8。于是jar包冲突了。

I_8@OW$B]PR0O0AL9A29BVV.png

这是jfinal-jetty的依赖

99W[CHJ[4WQ{)$BOIWY]G`6.png

这是我的依赖

8~5~[HJU2`ZT}G3K%6~I}FP.png

于是乎在IDEA Main方法启动下就在这个地方出错了

参考了玛雅牛的博客之后 https://my.oschina.net/myaniu/blog/470050

  1. /**
  2.  * 我有故事,你有酒么?
  3.  * JKhaled created by yunqisong@foxmail.com 2017/9/5
  4.  * FOR : JFinal IDEAJetty9Server With Jetty9
  5.  */
  6. public class IDEAJetty9Server implements IServer{
  7.  
  8.     private String webAppDir;
  9.     private int port;
  10.     private String context;
  11.     private boolean running = false;
  12.     private Server server;
  13.     private WebAppContext webApp;
  14.  
  15.     public IDEAServer(String webAppDir, int port, String context) {
  16.         if (webAppDir == null) {
  17.             throw new IllegalStateException("Invalid webAppDir of web server: " + webAppDir);
  18.         }
  19.         if (port < 0 || port > 65535) {
  20.             throw new IllegalArgumentException("Invalid port of web server: " + port);
  21.         }
  22.         if (StrKit.isBlank(context)) {
  23.             throw new IllegalStateException("Invalid context of web server: " + context);
  24.         }
  25.  
  26.         this.webAppDir = webAppDir;
  27.         this.port = port;
  28.         this.context = context;
  29.         // this.scanIntervalSeconds = scanIntervalSeconds;
  30.     }
  31.  
  32.     public void start() {
  33.         if (!running) {
  34.             try {
  35.                 running = true;
  36.                 doStart();
  37.             } catch (Exception e) {
  38.                 System.err.println(e.getMessage());
  39.                 LogKit.error(e.getMessage(), e);
  40.             }
  41.         }
  42.     }
  43.  
  44.     public void stop() {
  45.         if (running) {
  46.             try {server.stop();} catch (Exception e) {LogKit.error(e.getMessage(), e);}
  47.             running = false;
  48.         }
  49.     }
  50.  
  51.     private void doStart() {
  52.         if (!available(port)) {
  53.             throw new IllegalStateException("port: " + port + " already in use!");
  54.         }
  55.  
  56.         deleteSessionData();
  57.  
  58.         System.out.println("Starting JFinal " + Const.JFINAL_VERSION);
  59.         server = new Server();
  60.         HttpConfiguration http_config = new HttpConfiguration();
  61.         ServerConnector connector = new ServerConnector(server,new HttpConnectionFactory(http_config));
  62.         connector.setReuseAddress(true);
  63.         connector.setIdleTimeout(30000);
  64.         connector.setPort(port);
  65.         server.addConnector(connector);
  66.  
  67.         webApp = new WebAppContext();
  68.         webApp.setThrowUnavailableOnStartupException(true);    // 在启动过程中允许抛出异常终止启动并退出 JVM
  69.         webApp.setContextPath(context);
  70.         webApp.setResourceBase(webAppDir); // webApp.setWar(webAppDir);
  71.         webApp.setContextPath(context);
  72.         webApp.setMaxFormContentSize(81920000);
  73.         webApp.getInitParams().put("org.eclipse.jetty.servlet.Default.dirAllowed", "false");
  74.         webApp.getInitParams().put("org.eclipse.jetty.servlet.Default.useFileMappedBuffer", "true");
  75.         webApp.getInitParams().put("org.eclipse.jetty.server.Request.maxFormContentSize", "-1");
  76.         persistSession(webApp);
  77.  
  78.         server.setHandler(webApp);
  79.         try {
  80.             System.out.println("Starting web server on port: " + port);
  81.             server.start();
  82.             System.out.println("Starting Complete. Welcome To The JFinal World :)");
  83.             server.join();
  84.         } catch (Exception e) {
  85.             LogKit.error(e.getMessage(), e);
  86.             System.exit(100);
  87.         }
  88.         return;
  89.     }
  90.  
  91.     private void deleteSessionData() {
  92.         try {
  93.             FileKit.delete(new File(getStoreDir()));
  94.         }
  95.         catch (Exception e) {
  96.             LogKit.logNothing(e);
  97.         }
  98.     }
  99.  
  100.     private String getStoreDir() {
  101.         String storeDir = PathKit.getWebRootPath() + "/../../session_data" + context;
  102.         if ("\\".equals(File.separator)) {
  103.             storeDir = storeDir.replaceAll("/", "\\\\");
  104.         }
  105.         return storeDir;
  106.     }
  107.  
  108.     private void persistSession(WebAppContext webApp) {
  109.         String storeDir = getStoreDir();
  110.         SessionManager sm = webApp.getSessionHandler().getSessionManager();
  111.         if (sm instanceof HashSessionManager) {
  112.             try {
  113.                 ((HashSessionManager)sm).setStoreDirectory(new File(storeDir));
  114.             } catch (IOException e) {
  115.                 e.printStackTrace();
  116.             }
  117.             return ;
  118.         }
  119.         HashSessionManager hsm = new HashSessionManager();
  120.         try {
  121.             hsm.setStoreDirectory(new File(storeDir));
  122.         } catch (IOException e) {
  123.             e.printStackTrace();
  124.         }
  125.         SessionHandler sh = new SessionHandler();
  126.         sh.setSessionManager(hsm);
  127.         webApp.setSessionHandler(sh);
  128.     }
  129.  
  130.     private static boolean available(int port) {
  131.         if (port <= 0) {
  132.             throw new IllegalArgumentException("Invalid start port: " + port);
  133.         }
  134.  
  135.         ServerSocket ss = null;
  136.         DatagramSocket ds = null;
  137.         try {
  138.             ss = new ServerSocket(port);
  139.             ss.setReuseAddress(true);
  140.             ds = new DatagramSocket(port);
  141.             ds.setReuseAddress(true);
  142.             return true;
  143.         } catch (IOException e) {
  144.             LogKit.logNothing(e);
  145.         } finally {
  146.             if (ds != null) {
  147.                 ds.close();
  148.             }
  149.  
  150.             if (ss != null) {
  151.                 try {
  152.                     ss.close();
  153.                 } catch (IOException e) {
  154.                     // should not be thrown, just detect port available.
  155.                     LogKit.logNothing(e);
  156.                 }
  157.             }
  158.         }
  159.         return false;
  160.     }
  161. }


然后 main方法中启动

  1. new IDEAJetty9Server ("src/main/webapp",80,"/").start();

希望能够在大家有需要的时候帮助到大家,(虽然大部分代码都是copy波总的),玛雅牛给出Eclipse的实现,这里是一个IDEA简单的实现。欢迎大家讨论

评论区

JFinal

2017-09-05 20:56

收藏点赞,感谢分享

另外,类名我建议改成 Jetty9Server,区分版本更好

djs19960601

2017-09-05 21:00

@JFinal 好的呢,马上改

zhangpanqin

2018-04-11 02:10

我只想问你这个代码能启动吗?里面的方法都没改啊,构造函数还是错的

djs19960601

2018-04-11 09:11

@zhangpanqin 你看到构造函数是错的,肯定是你没有把jetty8的引用去除和jetty9的构造函数和jetty是不一样的。不能启动我放到社区干嘛

JFinal

2019-04-06 16:05

2018 年底 jetty-server 项目已经升级到了 jetty 9, 现在的最新版本是:
jetty-server-2019.3

用法与老版本完全一样,并且支持 IDEA 下的热加载

maven 地址:
https://mvnrepository.com/artifact/com.jfinal/jetty-server/2019.3

天天only

2019-05-15 17:51

@JFinal 你好 jetty 8 +jdk 7 可以运行websocket

热门分享

扫码入社