You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on Jetty startup results in an exception here - "Unsupported PathParam Type: java.lang.Integer". Changing Integer to int fixes the issue. The expected behavior would be for PathParamIdentifier to compare the type against both X.TYPE and X.class, otherwise boxed types will not work.
The text was updated successfully, but these errors were encountered:
Jetty version(s)
10.0.7
Java version/vendor
(use: java -version)
11.0.12 (Temurin)
OS type/version
MacOS
Description
WebSocket endpoint like this:
on Jetty startup results in an exception here - "Unsupported PathParam Type: java.lang.Integer". Changing
Integer
toint
fixes the issue. The expected behavior would be forPathParamIdentifier
to compare the type against bothX.TYPE
andX.class
, otherwise boxed types will not work.The text was updated successfully, but these errors were encountered: