We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
For the dependency injection of Force & ForceMVC we are using wired!
The following components in ForceMVC are di components.
It is possible to override these components with your own implementation and register them as follow:
@Config class OwnConfig { @Bean LocaleResolver localeResolver() { return new FixedLocaleResolver(Locale.ITALY); } }