You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Classpath may contain files with extensions which are not .class.
For example my classpath contains .xml files (because MyBatis).
Currently ReflectionUtils.removeClassSuffix is called, that removes the .class suffix; however it should filter to consider .class files only before doing that.
Right now my.package.File.xml becomes my.package.Fi and that triggers an error when Class.forName is called on it.
The text was updated successfully, but these errors were encountered:
Classpath may contain files with extensions which are not .class.
For example my classpath contains .xml files (because MyBatis).
Currently ReflectionUtils.removeClassSuffix is called, that removes the .class suffix; however it should filter to consider .class files only before doing that.
Right now
my.package.File.xml
becomesmy.package.Fi
and that triggers an error when Class.forName is called on it.The text was updated successfully, but these errors were encountered: