spring-batch-extensions
spring-batch-extensions copied to clipboard
Spring Batch Extensions
From a DataBinder binder, say I were to register a custom editor by calling: binder.registerCustomEditor(String.class, new StringTrimmerEditor(true)) It tried to read this particular row as a Long; hence an IllegalArgumentException...
the issue is that CustomMapper is reading empty rows. even after deleting the rows in excel, its reading.
I'm using **Spring Batch Excel Extension** to read **Excel (.xlx)** file. I cloned the source and did **mvn install** and added the dependency to my Spring Boot project. I also...
I don't know for sure if this is an issue with this plugin, or whether it is caused by something I am doing / not doing. Details are here: http://stackoverflow.com/questions/29127028/grails-spring-batch-excel-reader-only-reads-file-once....
If the fields of target object does not have the same names of the header in the excel file, org.springframework.beans.NotWritablePropertyException is thrown.
IsoFormattingDateDataFormatter reads the value as a LocalDateTime and then attempts to format it as an ISO_OFFSET_DATE_TIME. A LocalDateTime does not have zone offset information, therefore this always fails with an...
This is a rather large PR because it will remove the Neo4j-OGM dependency and replace it with the Spring Data Neo4j. Some background information to clarify the situation: The official...
Hello! The second worksheet of every one of my workbooks has four columns with 24,000 rows. Ideally, I'd like to read in both sheets and each column needs to eventually...
Is it expected behaviour that using StreamingXlsxItemReader with BeanWrapperRowMapper causes UnsupportedOperationException? StreamingSheet throws (in method: getRow(int rowNumber)) this exception when we try to retrieve column names. I have a sample...
**Bug description** In `Neo4jItemReaderBuilder`, `startStatement(String startStatement)` is required, but Neo4j itself deprecated the START statement and throw error when used. If not used, application will throw `BeanCreationException` with message `java.lang.IllegalArgumentException:...