Skip to content
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

Extra content after end of an array is ignored #3977

Closed
marekkrk opened this issue Jun 11, 2023 · 5 comments
Closed

Extra content after end of an array is ignored #3977

marekkrk opened this issue Jun 11, 2023 · 5 comments
Labels
to-evaluate Issue that has been received but not yet evaluated

Comments

@marekkrk
Copy link

Describe the bug
Extra content after a square bracket that ends an array is ignored. Example:
[]abc

Version information
2.15.2

To Reproduce
Run the following code:

import com.fasterxml.jackson.databind.ObjectMapper;

public class ParseArray {

public static void main(String[] args) throws Exception {
    var mapper = new ObjectMapper();
    var obj = mapper.readValue("[]abc", Object.class);
    System.out.println(obj);
}

}

Expected behavior
A parse exception is thrown.

Additional context
No exception, an empty list is printed to standard out.

@marekkrk marekkrk added the to-evaluate Issue that has been received but not yet evaluated label Jun 11, 2023
@marekkrk marekkrk changed the title Extra content after end of array is ignored Extra content after end of an array is ignored Jun 11, 2023
@marekkrk
Copy link
Author

This also applies to curly brackets. Example:
{}y

@JooHyukKim
Copy link
Member

@marekkrk thank you for reporting! 🙏🏼 I think either this should not be allowed, or at least have configuration to enable/disable.

One question though. does your stated Expected behahior come from previous Jackson version, or out of convention? For example like this wasn't the case in Jackson 2.14.0.

@yawkat
Copy link
Member

yawkat commented Jun 12, 2023

this is intended, you can enable FAIL_ON_TRAILING_TOKENS if you want

@marekkrk
Copy link
Author

this is intended, you can enable FAIL_ON_TRAILING_TOKENS if you want

Thanks, this solves the problem. But why is this not enabled by default?

@yawkat
Copy link
Member

yawkat commented Jun 12, 2023

see #3406 and the linked discussion

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
to-evaluate Issue that has been received but not yet evaluated
Projects
None yet
Development

No branches or pull requests

4 participants