Latest 1.13.2 throws NoSuchFieldError: USE_FAST_DOUBLE_PARSER
See original GitHub issueOur JDBC driver has recently upgraded to the latest v1.13.2 release as we require the latest updates to fasterxml.jackson.core:jackson-databind as component Azure Devops governance reported as a vulnerability. However it looks like the latest has references to undefined USE_FAST_DOUBLE_PARSER.
The following is a test we have federated authentication which worked in prev releases:
try {
final PublicClientApplication clientApplication = PublicClientApplication.builder(fedauthClientId)
.executorService(Executors.newFixedThreadPool(1)).authority(stsurl).build();
final CompletableFuture<IAuthenticationResult> future = clientApplication
.acquireToken(UserNamePasswordParameters.builder(Collections.singleton(spn + "/.default"),
azureUserName, azurePassword.toCharArray()).build());
final IAuthenticationResult authenticationResult = future.get();
secondsBeforeExpiration = TimeUnit.MILLISECONDS
.toSeconds(authenticationResult.expiresOnDate().getTime() - new Date().getTime());
accessToken = authenticationResult.accessToken();
} catch (Exception e) {
fail(e.getMessage());
}
This now results in:
org.opentest4j.AssertionFailedError: java.lang.NoSuchFieldError: USE_FAST_DOUBLE_PARSER
Issue Analytics
- State:
- Created a year ago
- Comments:11 (5 by maintainers)
Top Results From Across the Web
How to Resolve the NoSuchFieldError in Java - Rollbar
NoSuchFieldError in Java is thrown when an application accesses or modifies a field of an object/class that no longer contains that field.
Read more >debugging - NoSuchFieldError Java - Stack Overflow
This error is typically thrown if you only partially recompile your code. You've got old code that is referencing a field that no...
Read more >NoSuchFieldError in Java - Baeldung
NoSuchFieldError extends the IncompatibleClassChangeError class and is thrown when the application tries to access or modify a field of an ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hello @lilgreenbird : In our recent 1.13.3 release we’re now using version 2.13.4.2 of jackson-databind, which is a version that has the security fix and is compatible with other 2.13 versions of jackson-core
You should be able to upgrade to 1.13.3 of MSAL Java to solve this USE_FAST_DOUBLE_PARSER issue and the security vulnerability. Closing this issue, feel free to reopen/leave a comment if you’re still running into issues.
This is the first time that we’ve had these sorts of issues where jackson-databind/jackson-core where out of sync enough to cause problems, and since we only use jackson-databind we’ve let jackson-core be a transient dependency.
It seems like the root cause of the issue is that jackson-databind has kind of a soft requirement for version 2.14 of jackson-core, which means that Maven grabs jackson-core 2.13 to satisfy azure-core then we run into this issue. Since all of the jackson’s 2.14 releases so far are just release candidates, I believe Maven will prefer the latest 2.13 release instead of any of the 2.14’s.
Since neither of our projects relies on jackson-core the best option would be for azure-core to update their project to use one of the 2.14 release candidates. It looks like they’ve started creating PRs to update their use of jackson, but I’m not sure what they’re release schedule is: https://github.com/Azure/azure-sdk-for-java/pull/31559
I’ll try to figure out when they’re planning a release with these dependencies updated. If it seems like it’ll be soon then I think it’d be best to let that solve this issue, otherwise we’ll add jackson-core as a dependency in MSAL Java and we’ll probably get a hotfix out sometime next week.