-
Notifications
You must be signed in to change notification settings - Fork 17
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
Handle "special" chars in the identifiers #48
Comments
Possibly this could be done with a more abstract mapper which I want to introduce in Adroit's ContainerResponderResolver. What do you think of discussing such a mapper as a separate "mini component"? |
I don't think that it would make sense to customize such a mapping. The constraints are clear, there is not much room for customizations I would think. |
Having an interface for such a mapper does not imply configurability of any of its implementations. You could use a fixed One for that use case. |
Well the point is if I can solve the problem with 3 lines of code why use some external lib for that? |
Good point, if you don't see any need for customization, I agree.I thought of this possibility because the hard coded approach will require implicit knowledge about how this is done internally and may not be customized. |
…he config class methods.
…liases for beans.
While experimenting with Disco and Expressive I realized that currently Disco is not able to work with Expressive for one reason: Expressive uses pseudo class names to query service instances from the service container. Since Disco tries to call a method with the same name on the config class this currently does not work because "" is not a valid character to be used for a method name.
To solve the issue we need a mapper in between to translate the invalid characters into valid ones.
The text was updated successfully, but these errors were encountered: