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
Hi:
The current build.gradle will import jackson-databind-2.9.0 jar which causes springboot's staring up failure for reason of java.lang.NoClassDefFoundError: com/fasterxml/jackson/annotation/JsonMerge.
After modifying the build.gradle's dependencies as following , spring boot starts up successfully.
Hi:
The current build.gradle will import jackson-databind-2.9.0 jar which causes springboot's staring up failure for reason of java.lang.NoClassDefFoundError: com/fasterxml/jackson/annotation/JsonMerge.
After modifying the build.gradle's dependencies as following , spring boot starts up successfully.
dependencies {
compile ".............
..............
"javax.servlet:jstl"
compile "com.fasterxml.jackson.core:jackson-databind:2.8.7"
compile ('com.maxmind.geoip2:geoip2:2.7.0'){
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
}
Another way to learn:
The netbeans 8.2 tested maven version of presentation branch is post here -https://github.com/mingqin1/spring-security-4.1-and-beyond/tree/presentation . The maven converted codes serve the purpose of encourage of learning . All the credits go to Rob Winch, Joe Grandja
The text was updated successfully, but these errors were encountered: