You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unmarshalling that uses InputSource without SystemId gets up to 30% performance penalty because of extensively generated exceptions in jakarta.xml.bind.helpers.ValidationEventLocatorImpl.toURL. This case can easily be optimized by doing a null check inside toURL instead of trying to construct URL and catching MalformedURLException
The text was updated successfully, but these errors were encountered:
Unmarshalling that uses
InputSource
withoutSystemId
gets up to 30% performance penalty because of extensively generated exceptions injakarta.xml.bind.helpers.ValidationEventLocatorImpl.toURL
. This case can easily be optimized by doing a null check insidetoURL
instead of trying to constructURL
and catchingMalformedURLException
The text was updated successfully, but these errors were encountered: