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
in MapperScannerConfigurer.java:
private String getPropertyValue(String propertyName, PropertyValues values) { PropertyValue property = values.getPropertyValue(propertyName); if (property == null) { return null; } Object value = property.getValue(); if (value == null) { return null; } else if (value instanceof String) { return value.toString(); } else if (value instanceof TypedStringValue) { return ((TypedStringValue) value).getValue(); } else { return null; } }
but my value is RuntimeBeanReference ( implements FactoryBean ), be set:
builder.addPropertyReference("basePackage", basePackageBeanName);
so, value is null and get java.lang.IllegalArgumentException: At least one base package must be specified.
java.lang.IllegalArgumentException: At least one base package must be specified
The text was updated successfully, but these errors were encountered:
the version is mybatis-spring-3.0.3
Sorry, something went wrong.
No branches or pull requests
in MapperScannerConfigurer.java:
but my value is RuntimeBeanReference ( implements FactoryBean ),
be set:
so, value is null and get
java.lang.IllegalArgumentException: At least one base package must be specified
.The text was updated successfully, but these errors were encountered: