alexpartsch
alexpartsch
@cowtowncoder enabling the property you've mentioned on a JSON `ObjectMapper` like: ```java @Test void testJsonOrder() throws JsonProcessingException { var om = new ObjectMapper(); om.configure(MapperFeature.SORT_PROPERTIES_ALPHABETICALLY, true); var json = """ {...
@cowtowncoder running the code without `withHeader()`, like in this example: ```java @Test void testRecord() throws JsonProcessingException { CsvMapper csvMapper = new CsvMapper(); var schema = csvMapper.schemaFor(TestRecord.class); var csv = """...
@bsautel I'm running into the same issue when having `download = false` set on a Apple M1 Book, running the given Java program with `aarch64` on JDK 16: ``` /tmp...