We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a eureka micro-service whose service ID is in camelCaseForm, not kebab-case: TradingCenterService
TradingCenterService
Here is how a created a Client to consume this service:
@Client(id = "TradingCenterService") public interface TradingCenterClient extends TradingCenterOperations { @Get("/v1/quotaTotal/query") Single<Result> callUserQuotaQuantity(@Body BaseUserCQQueryDto queryDto); }
When it get called, it complained No available services for ID: trading-center-service
No available services for ID: trading-center-service
seems like it always hiphenate the serviceID, which in my case stops me from consuming services with camelCase serviceIDs.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a eureka micro-service whose service ID is in camelCaseForm, not kebab-case:
TradingCenterService
Here is how a created a Client to consume this service:
When it get called, it complained
No available services for ID: trading-center-service
seems like it always hiphenate the serviceID, which in my case stops me from consuming services with camelCase serviceIDs.
The text was updated successfully, but these errors were encountered: