Consider removing use of global default TypeFactory.defaultInstance()
#1373
Labels
duplicate
Duplicate of an existing (usually earlier) issue
(See #1363 for background)
While it is convenient to start with a shareable
TypeFactory
forObjectMapper
, using static singleton accessed throughTypeFactory.createInstance()
, this can lead to unintentionalClass
retention for app servers (et al) that support hot reloading. It may be relatively easy to just force construction of a newTypeFactory
for newObjectMapper
s, which would remove this problem.The text was updated successfully, but these errors were encountered: