-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Description
The first is easy to fix (move JavaUtils
to ...support.util
, then restore/deprecate the class in ...util
).
The second is not so simple - moving the JsonNodeWrapperToJsonNodeConverter
to ...support.json
doesn't help; the issue is that @IntegrationConverter
is in ...config
and DefaultConfiguringBeanFactoryPostProcessor
has references to ...json
. Moving the converter and property accessor to ...config
should solve it, but doesn't feel right.