As of the current implementation, users need to supply a file in de META-INF directory to customize parameter resolvers.
This is done using the ClasspathParameterResolverFactory, which actually scans for all implementations of the ParameterResolverFactory interface.
Almost everything is configurable through Java API, with this still being an exception. It would be great to have the following method on the Configurer:
public void registerParameterResolverFactory(ParameterResolverFactory factory).
This way, users can also register multiple if they want to.
As of the current implementation, users need to supply a file in de
META-INF
directory to customize parameter resolvers. This is done using theClasspathParameterResolverFactory
, which actually scans for all implementations of theParameterResolverFactory
interface.Almost everything is configurable through Java API, with this still being an exception. It would be great to have the following method on the
Configurer
:public void registerParameterResolverFactory(ParameterResolverFactory factory)
.This way, users can also register multiple if they want to.