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
implementation not compatible with osgi class loading:
private ValidatorFactory getValidatorFactory() { try { return Validation.buildDefaultValidatorFactory(); } catch (ValidationException e) { LOGGER.debug("Cannot find validation provider.", e); LOGGER.info("No JSR 303 Bean Validation provider available."); } return null; }
The text was updated successfully, but these errors were encountered:
I could provide an implementation of ValidationProviderResolver dedicated to OSGi. But the question is, how to inject it to XOManagerFactoryImpl:
ValidationProviderResolver
ValidatorFactory validatorFactory = Validation.byDefaultProvider() .providerResolver( new OsgiServiceDiscoverer() ) .configure() .buildValidatorFactory();
To overwrite XOManagerFactoryImpl with OsgiXOManagerFactoryImpl seems not the best solution.
XOManagerFactoryImpl
OsgiXOManagerFactoryImpl
Sorry, something went wrong.
No branches or pull requests
implementation not compatible with osgi class loading:
The text was updated successfully, but these errors were encountered: