Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,8 @@
1 $$_Weld*
1 $$_jvst*
1 $$SpringCGLIB$$*
# Jackson afterburner
1 $Access4JacksonDeserializer*
1 $Access4JacksonSerializer*
1 $Creator4JacksonDeserializer*
1 $Creator4JacksonSerializer*
Copy link
Copy Markdown
Contributor

@bric3 bric3 Apr 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: There's no $Creator4JacksonSerializer ;)

Also, there are possibly these hibernate ones:

  • $HibernateInstantiator$
  • $HibernateProxy$
  • $HibernateAccessOptimizer$

see #8678 (comment) and #8678 (comment)

On another note, we wondered if we wanted to have a toggle for these classes (Maybe added as another trie ?).

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On another note, we wondered if we wanted to have a toggle for these classes (Maybe added as another trie ?).

Rather than introduce another trie, you could take the same approach as in ignored_class_name.trie and use a different number for ignores that can be toggled

i.e. 0 == force allow, 1 == force ignore, 2 == optional ignore, etc...

You could have as many extra values as you want for different categories

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes as @mcculls proposes there is no need to add another trie but just having a different result.
Thanks @bric3 for the note :) let me remove the exceeding one and add the hibernate ones. Did you have a precise use case for having different trie result values?