sdeleuze
12/11/2017, 10:31 AMqwert_ukg
12/11/2017, 10:33 AMqwert_ukg
12/11/2017, 10:45 AMhho
12/11/2017, 11:35 AMqwert_ukg
12/11/2017, 11:44 AMhho
12/13/2017, 10:35 AMkotlin-stdlib-jdk{7,8}
? Currently they're only managing the -jre
variants? (https://github.com/spring-projects/spring-boot/blob/b6aa0f24e2d1ea371d12741182a946623c8d08e0/spring-boot-project/spring-boot-dependencies/pom.xml#L2224-L2233)sdeleuze
12/13/2017, 10:40 AMsdeleuze
12/13/2017, 10:40 AMhho
12/13/2017, 11:30 AM-jdk
variant to my POM, which then wasn't version managed anymore.hho
12/13/2017, 11:30 AMIf you're targeting JDK 7 or JDK 8, you can use extended versions of the Kotlin standard library which contain additional extension functions for APIs added in new JDK versions. Instead of kotlin-stdlib, use kotlin-stdlib-jdk7 or kotlin-stdlib-jdk8, depending on your JDK version (for Kotlin 1.1.x, kotlin-stdlib-jre7 and kotlin-stdlib-jre8).
hho
12/13/2017, 11:32 AMhho
12/13/2017, 11:32 AMhho
12/13/2017, 11:33 AMsdeleuze
12/13/2017, 11:34 AMsdeleuze
12/13/2017, 11:34 AMander.dev
12/18/2017, 7:34 PMander.dev
12/18/2017, 7:38 PMhho
12/21/2017, 11:05 AM@RequestBody
as a ByteArray
? (using webflux with annotations)hho
12/21/2017, 11:06 AMhho
12/21/2017, 11:09 AMFailed to resolve argument 2 of type '[B' on public org.springframework.http.ResponseEntity<java.lang.Object> mypackage.MyController.store(java.lang.String,java.lang.String,byte[])
Czar
12/21/2017, 11:13 AMhho
12/21/2017, 11:17 AMhho
12/21/2017, 12:00 PMhho
12/21/2017, 12:00 PMByteArrayDecoder
doesn't support decodeToMono()
, how am I supposed to use it for request data?Czar
12/21/2017, 12:07 PMContent-Type
header of the request?hho
12/21/2017, 12:38 PMByteArrayDecoder
claims to support all MIME types (*/*
), which makes sense.hho
12/21/2017, 12:40 PMFlux<ByteArray>
, maybe because it could be transferred chunked?sdeleuze
12/21/2017, 12:46 PMorg.springframework.core.codec.ByteArrayDecoder#canDecode
to see what class is detected ?hho
12/21/2017, 12:47 PMhho
12/21/2017, 12:48 PMFlux