The default for dateTimePattern is yyyy-MM-dd'T'HH:mm:ss.SSSXXX, which seems to be ISO 8601 compliant, but actually isn't because y means "year of era", not "year". This means that when parsing strictly the year would need additional indication whether the year is before or after christ - which is not ISO compliant. Actually ISO compliant would be uuuu-MM-dd'T'HH:mm:ss.SSSXXX. With the current pattern parsing fails in strict mode.
The default for dateTimePattern is
yyyy-MM-dd'T'HH:mm:ss.SSSXXX, which seems to be ISO 8601 compliant, but actually isn't becauseymeans "year of era", not "year". This means that when parsing strictly the year would need additional indication whether the year is before or after christ - which is not ISO compliant. Actually ISO compliant would beuuuu-MM-dd'T'HH:mm:ss.SSSXXX. With the current pattern parsing fails in strict mode.