Skip to content
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

feat: Support separate registration and published paths in WebMvcSseS… #80

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

minguncle
Copy link

Resolves #79

Support separate registration and published paths in WebMvcSseServerTransportProvider

Adds a new constructor to WebMvcSseServerTransportProvider that accepts separate parameters for server registration paths and client-facing published paths.

This enhancement allows the provider to work correctly in environments with servlet context paths or global URL prefixes (like Spring Boot's spring.mvc.servlet.path) by:

  • Using messageEndpoint for server-side router registration
  • Using publishedMessageEndpoint when communicating with clients

The implementation maintains backward compatibility with existing code while addressing the needs of deployments behind proxies or with context paths.

Motivation and Context

When using WebMvcSseServerTransportProvider in environments with servlet context paths or global URL prefixes, there's a mismatch between the path where handlers are registered with Spring's RouterFunction and the full path that needs to be communicated to clients. This enhancement solves that problem by allowing these paths to be configured separately.

For example, in Spring Boot applications with spring.mvc.servlet.path=/api/v1, the server needs to register handlers at bare paths like /message, but clients need to use the full path /api/v1/message.

How Has This Been Tested?

Tested in a Spring Boot application with servlet context paths configured. Verified both the registration of handlers at the correct paths and the communication of full paths to clients through the SSE connection.

Breaking Changes

No breaking changes. Existing code using the current constructors will continue to work as before.

Types of changes

  • New feature (non-breaking change which adds functionality)

Checklist

  • I have read the MCP Documentation
  • My code follows the repository's style guidelines
  • New and existing tests pass locally
  • I have added appropriate error handling
  • I have added or updated documentation as needed

Additional context

This implementation adds a new field publishedMessageEndpoint and modifies the handleSseConnection method to use this published endpoint when communicating with clients. All existing constructors are preserved, maintaining backward compatibility.

…erverTransportProvider

Adds a new constructor to WebMvcSseServerTransportProvider that accepts separate
parameters for server registration paths and client-facing published paths.

This enhancement allows the provider to work correctly in environments with
servlet context paths or global URL prefixes (like Spring Boot's
spring.mvc.servlet.path) by:
- Using messageEndpoint for server-side router registration
- Using publishedMessageEndpoint when communicating with clients

The implementation maintains backward compatibility
@tzolov tzolov self-assigned this Apr 2, 2025
@tzolov
Copy link
Contributor

tzolov commented Apr 2, 2025

Thank you @minguncle ! will review it shortly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support for separate registration and published endpoint paths in WebMvcSseServerTransportProvider
2 participants