-
Notifications
You must be signed in to change notification settings - Fork 564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.x - Add ability to configure routing for an existing socket #7702
Comments
romain-grecourt
added a commit
to romain-grecourt/helidon
that referenced
this issue
Oct 3, 2023
- Update WebServerConfigBlueprint and LoomServer - Update multiport example to use the new API - Fix multiport example README.md and dependencies (/observe and dependencies) Fixes helidon-io#7702
romain-grecourt
added a commit
to romain-grecourt/helidon
that referenced
this issue
Oct 3, 2023
- Update WebServerConfigBlueprint and LoomServer - Update multiport example to use the new API - Fix multiport example README.md and dependencies (/observe and dependencies) Fixes helidon-io#7702
romain-grecourt
added a commit
to romain-grecourt/helidon
that referenced
this issue
Oct 3, 2023
- Update WebServerConfigBlueprint and LoomServer - Update multiport example to use the new API - Fix multiport example README.md and dependencies (/observe and dependencies) Fixes helidon-io#7702
Merged
Merged
romain-grecourt
added a commit
that referenced
this issue
Oct 3, 2023
- Update WebServerConfigBlueprint and LoomServer - Update multiport example to use the new API - Fix multiport example README.md and dependencies (/observe and dependencies) Fixes #7702
dalexandrov
pushed a commit
to dalexandrov/helidon
that referenced
this issue
Oct 17, 2023
…7705) - Update WebServerConfigBlueprint and LoomServer - Update multiport example to use the new API - Fix multiport example README.md and dependencies (/observe and dependencies) Fixes helidon-io#7702
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In 3.x users could define "named" sockets in configuration and set-up routing for those sockets programmatically.
In the current 4.x state (at least in 4.0.0-RC1), the only way to set-up routing for a socket is when creating the socket via the
putSocket
method on the server builder.The workaround to emulate the 3.x use-case is to re-create the socket:
Side by side comparison
Given the following
application.yaml
:In 3.x:
In 4.x:
The text was updated successfully, but these errors were encountered: