-
Notifications
You must be signed in to change notification settings - Fork 3
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
Classpath scanning does not work for Spring Boot-based JARs #31
Labels
Comments
Hypothesis: loading of WAR files never worked, because in WAR files the classes are bundled under WEB-INF/classes and not in the jar root. (see jb4jsonld/src/main/java/cz/cvut/kbss/jsonld/deserialization/util/ClasspathScanner.java Line 117 in 092f1a0
|
fixed via #32 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When using JB4JSON-LD in a Spring Boot-based application, there is problem with classpath scanning. It expects multi-release info in
META-INF
while it can be inBOOT-INF
for Spring Boot applications.The text was updated successfully, but these errors were encountered: