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
relates to #58
ClasspathMapperScanner still uses property injection for mapper interface instead of (new) constructor:
definition.getPropertyValues().add("mapperInterface", definition.getBeanClassName());
should be
definition.getConstructorArgumentValues().addGenericArgumentValue(definition.getBeanClassName());
therefore mit mybatis-spring-1.2.3 i still get the error-message
"...Bean creation exception on FactoryBean type check: org.springframework.beans.factory.BeanCreationException ..."
i verified that it works when using constructor injection.
The text was updated successfully, but these errors were encountered:
This has already been resolved, right? Let me know if it is not.
Sorry, something went wrong.
No branches or pull requests
relates to #58
ClasspathMapperScanner still uses property injection for mapper interface instead of (new) constructor:
definition.getPropertyValues().add("mapperInterface", definition.getBeanClassName());
should be
definition.getConstructorArgumentValues().addGenericArgumentValue(definition.getBeanClassName());
therefore mit mybatis-spring-1.2.3 i still get the error-message
"...Bean creation exception on FactoryBean type check: org.springframework.beans.factory.BeanCreationException ..."
i verified that it works when using constructor injection.
The text was updated successfully, but these errors were encountered: