-
Notifications
You must be signed in to change notification settings - Fork 41.1k
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
Logging a Path object using structured logging throws StackOverflowError #44502
Comments
Hi @nosan ,
would be a more natural approach here. |
Hi @gkdis6,
This is a good option as well.
So I would say there is no "right or wrong" approach. For example, this proposal suggests handling Additionally, it's always possible to explicitly use something like |
I reviewed the
I don’t think anyone intended to serialize I also checked different Map<String, Object> files = new LinkedHashMap<>();
files.put("files",
List.of(Paths.get(".").toAbsolutePath(), Paths.get("1.jar").toAbsolutePath(), Paths.get("/root")));
String json = JsonWriter.standard().write(files).toJsonString(); Iterable Path.forEach(): {
"files": [
[
"Users",
"dmytronosan",
"IdeaProjects",
"spring-boot",
"spring-boot-project",
"spring-boot",
"."
],
[
"Users",
"dmytronosan",
"IdeaProjects",
"spring-boot",
"spring-boot-project",
"spring-boot",
"1.jar"
],
[
"root"
]
]
} Path.toString(): {
"files": [
"/Users/dmytronosan/IdeaProjects/spring-boot/spring-boot-project/spring-boot/.",
"/Users/dmytronosan/IdeaProjects/spring-boot/spring-boot-project/spring-boot/1.jar",
"/root"
]
} Path.toUri().toString(): {
"files": [
"file:///Users/dmytronosan/IdeaProjects/spring-boot/spring-boot-project/spring-boot/./",
"file:///Users/dmytronosan/IdeaProjects/spring-boot/spring-boot-project/spring-boot/1.jar",
"file:///root"
]
} I think treating With that said, I will update gh-44507 to use |
When I said, “This would also align with how other objects like File are typically logged.” I really appreciate your time and feedback. Thanks for reviewing! 👍 |
I wonder if else if (value instanceof Iterable<?> iterable) {
writeArray(iterable::forEach);
} is generally a good idea or if we should switch that to else if (value instanceof Collection<?> collection) {
writeArray(collection::forEach);
} An @philwebb what do you think? |
I'm not sure that would help, as it's also possible to specify an unlimited (recursive) or deeply nested collection or map.
This addresses only this particular issue. |
Structured logging has infinite loop and throws StackOverflowError when attempting to log a Path object.
Tested with spring-boot 3.4.3 and latest 3.5.0-SNAPSHOT.
Example code:
Exception:
The text was updated successfully, but these errors were encountered: