Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

org.eclipse.jetty.util.ssl.SslContextFactory$Client ClassNotFoundException upgrading to Jetty Server 9.4.16

I have a working application that's been using jetty-server version 9.4.15.v20190215. Due to a vulnerability scan that found issues in jetty-server dependencies, I looked into upgrading my app to use jetty-server 9.4.19-v20190610, the latest release as I'm writing this.

I tried to compile the application again, and I'm getting this error during startup:

Exception in thread "main" java.lang.NoClassDefFoundError: org/eclipse/jetty/util/ssl/SslContextFactory$Client
    at org.eclipse.jetty.websocket.client.HttpClientProvider.get(HttpClientProvider.java:49)
    at org.eclipse.jetty.websocket.client.WebSocketClient.<init>(WebSocketClient.java:261)
    at org.eclipse.jetty.websocket.jsr356.ClientContainer.<init>(ClientContainer.java:140)
    at org.eclipse.jetty.websocket.jsr356.server.ServerContainer.<init>(ServerContainer.java:94)
    at org.eclipse.jetty.websocket.jsr356.server.deploy.WebSocketServerContainerInitializer.configureContext(WebSocketServerContainerInitializer.java:152)
    at it.kahoot.merlin.jetty.JettyServer.main(JettyServer.java:53)
Caused by: java.lang.ClassNotFoundException: org.eclipse.jetty.util.ssl.SslContextFactory$Client
    at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 6 more

I understand the class org.eclipse.jetty.util.ssl.SslContextFactory$Client is not found anymore.

How do I proceed?

like image 501
Cosimo Avatar asked Dec 22 '22 22:12

Cosimo


1 Answers

By tracing back the jetty-server versions to the first one that causes this issue, I found that it's jetty-server version 9.4.16.v20190411, whose release notes mention the following:

jetty-9.4.16.v20190411 - 11 April 2019
 ...
 + 3464 Split SslContextFactory into Client and Server
 ...

Given the class name, I figured I needed to add jetty-util to my dependencies (pom.xml), so I did:

<!-- pom.xml -->
...
<properties>
  <jetty.version>9.4.19.v20190610</jetty.version>
</properties>

<dependency>
  <groupId>org.eclipse.jetty</groupId>
  <artifactId>jetty-server</artifactId>
  <version>${jetty.version}</version>
</dependency>

<!-- Needed for the SSLContextFactory$Client class -->
<dependency>
  <groupId>org.eclipse.jetty</groupId>
  <artifactId>jetty-util</artifactId>
  <version>${jetty.version}</version>
</dependency>

Compilation and startup now work again with the newest Jetty.

like image 112
Cosimo Avatar answered Jan 06 '23 03:01

Cosimo