7,271 questions
0
votes
0
answers
13
views
Jetty 12 overwrites keystore file at startup
I configured Jetty 12.0.19 to handle HTTPS on port TCP/443 using the CAP_NET_BIND capability. Everything works fine when Jetty is started by jetty user.
Then I created a Keystore with the server's ...
-1
votes
1
answer
21
views
Why does jetty throw "request headers too large"? [closed]
After upgrading spring boot version. Our jetty http client suddenly throws "request headers too large" error.
we do not have the issue before.
What has changed ?
0
votes
0
answers
22
views
NoSuchMethodException, No suitable constructor: migrating jenkins to jetty12 ee9 (jenkins 492.3) with an existing HashLoginService implementation
Theres a well documented online configuration for configuring Jenkins on earlier versions of jetty and jenkins. This setup is not apparently supported with jetty 12.
<?xml version="1.0" ...
0
votes
0
answers
38
views
Mocking an embedded Jetty server request with test body content
I'm using the delightful Jetty org.eclipse.jetty:jetty-server:12.0.18 for an embedded HTTP server (not using Java EE servlets). Jetty passes an org.eclipse.jetty.server.Request to a custom handler, ...
0
votes
0
answers
38
views
Embdded jetty 9 with Spring security MVC Access denied 403 from servlet dispatcher using x509 client certificate authentication
Environment is jetty v9 embedded server with a Spring web MVC application.
The server requests the client certificate but does not authenticate giving Access denied 403 from servlet dispatcher. (...
-3
votes
1
answer
45
views
Jetty mTLS failed connection logging
I am using Java 17 Spring Boot configured to use Jetty running as an mTLS microservice.
I would like to log failed connections (due to misaligned keys or client keys not recognised in the CA -- all of ...
0
votes
0
answers
42
views
Jetty throwing written 0 < xxx content-length
I am using java 21, Spring boot 3.2.5 and Jetty 12.0.8
I have started seeing an exception which occurs almost randomly (Full stack trace at the end):
"writeError: status=500, message=java.io....
0
votes
0
answers
76
views
How to do plain websocket with Spring/Jetty
I'm trying to get the basic websocket working in Spring with Jetty, as covered here.
At the time of the upgrade, runtime is reporting that the provider is null.
java.lang.NullPointerException: Cannot ...
0
votes
1
answer
24
views
Camel-Jetty Rest DSL custom filter not working on GET requests
I am using camel-jetty (camel version 3.20.0 and jetty version 9.44) rest-configuration for rest services.
<restConfiguration component="jetty" port="9091" bindingMode="off&...
0
votes
1
answer
97
views
Cannot connect to Jetty WebSocket v11
I am trying to implement server, as java plain application, where clients could connect to a web socket.
The goal is to connect client to a websocket via this url: ws://localhost:4550/api/myWebSocket
,...
0
votes
0
answers
31
views
Geoserver: Remove Jetty version from 404 page
I'm using Geoserver and I'm trying to remove Jetty version from 404 pages. To be honest, I have no clue what Jetty is or does. :)
Right now it looks like this:
I set jetty.httpConfig....
0
votes
1
answer
49
views
Consequences of using Jetty 12 HTTP2ServerConnectionFactory with high maxConcurrentStreams
I would like to understand what's the consequences when configuring HTTP2ServerConnectionFactory::maxConcurrentStreams to high value (for example 100k). The default value is 128, are there any reasons ...
0
votes
0
answers
25
views
Hazelcast single node cluster not created after upgrading from version 4.2 to 5.3.x
We are using hazelcast in our Spring (Spring boot) based project with embedded Jetty server. We are trying to upgrade from verson 4.2 to 5.3.5 and above. Even a single node cluster is not working. ...
0
votes
1
answer
75
views
Jetty 12 development mode
Is there a way with Jetty 12 to use the existing work directory modifications to jar files or class files without have jetty re-explode the war in the webapps directory during startup?
I added these ...
0
votes
1
answer
145
views
java.lang.ClassNotFoundException: javax.servlet.ServletContext error using Jetty 12 EE10 Jakarta namespace with Spring Boot 3.2
I'm running Jetty 12.0.15 with Spring Boot 3.2.12. My code is all Jakarta namespace and I'm using Jakarta Servlet 6.0.0 which is now supported. All my config works fine when I run the app from ...