-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
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
Addition of toString() method to document class results in it not being located #35
Comments
I did track it down to this problem:
This is due to an older version of javassist being included by a parent project. Updating javassist fixed the issue. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a document class that was not being picked up during the JsonDBTemplate initialize phase. After stripping it down to determine what might be causing it, I found that just the inclusion of the
public String toString()...
method in the class was causing it to not be recognized as a valid collection. I have not looked into why that is.The text was updated successfully, but these errors were encountered: