skytin1004 commented on issue #889:
URL: https://github.com/apache/fesod/issues/889#issuecomment-4269523525

   Hi, I also tried to reproduce this locally on current `main`.
   
   My results are consistent with what @bengbengbalabalabeng mentioned.
   
   Using a similar setup with:
   
   - `@ExcelProperty(converter = ...)` on a `String` field
   - `@NumberFormat` on a `BigDecimal` field
   - `@DateTimeFormat` on a `ZonedDateTime` field
   - and a globally registered `Converter<ZonedDateTime>`
   
   I saw the following behavior:
   
   - when `supportExcelTypeKey()` returns `CellDataTypeEnum.STRING`, it fails 
with `ExcelWriteDataConvertException` rather than `StackOverflowError`
   - the error is: `Can not find 'Converter' support class ZonedDateTime`
   - when `supportExcelTypeKey()` returns `null`, the export works fine
   
   I also checked the output values and they look correct:
   
   - `STATUS:ACTIVE`
   - `1234.5`
   -  `2026-03-24 15:30:45`
   
   So it seems more like a converter resolution issue than a recursive 
`hashCode()` / `StackOverflowError` problem.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to