sdeleuze
08/30/2019, 7:17 AMsdeleuze
08/30/2019, 7:18 AMsdeleuze
08/30/2019, 7:19 AMsdeleuze
08/30/2019, 7:19 AMsdeleuze
08/30/2019, 7:20 AMsdeleuze
08/30/2019, 7:20 AMsdeleuze
08/30/2019, 7:20 AMcorneil
08/30/2019, 7:20 AMsdeleuze
08/30/2019, 7:21 AMsdeleuze
08/30/2019, 7:21 AMDariusz Kuc
08/30/2019, 6:40 PMWebFilter
? i.e. i need to populate some contextual data based on the incoming request, currently i store it in the reactor subscriber context and then read the value in my router. With introduction of native coRouter
I was wondering whether I could eliminate the reactor code completelydavidmontano
09/05/2019, 3:03 PMcorneil
09/06/2019, 8:33 AMRobert Jaros
09/06/2019, 9:59 AMjava.lang.NoSuchMethodError: reactor.core.publisher.Flux.usingWhen(Lorg/reactivestreams/Publisher;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BiFunction;Ljava/util/function/Function;)Lreactor/core/publisher/Flux
when using spring-data-r2dbc 1.0.0.BUILD-SNAPSHOT
with spring-boot 2.2.0.M5
. It worked a few days ago. What spring boot version should I use now?Robert Jaros
09/06/2019, 10:06 AM2.2.0.BUILD-SNAPSHOT
is workingRobert Jaros
09/06/2019, 10:10 AMsdeleuze
09/06/2019, 10:11 AMRobert Jaros
09/06/2019, 1:03 PMRobert Jaros
09/06/2019, 1:03 PMRobert Jaros
09/06/2019, 1:04 PMRobert Jaros
09/06/2019, 1:10 PMkenkyee
09/08/2019, 12:55 AMepchris
09/12/2019, 12:56 AMBernhard
09/12/2019, 9:52 AMcorneil
09/12/2019, 9:55 AMBernhard
09/12/2019, 9:55 AMtmg
09/12/2019, 12:22 PMtmg
09/12/2019, 12:23 PMtmg
09/12/2019, 12:24 PM@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@RequestMapping(method = <http://RequestMethod.POST|RequestMethod.POST>)
public @interface PostMapping {
/**
* Alias for {@link RequestMapping#name}.
*/
@AliasFor(annotation = RequestMapping.class)
String name() default "";
/**
* Alias for {@link RequestMapping#value}.
*/
@AliasFor(annotation = RequestMapping.class)
String[] value() default {};
<etc>
What's the kotlin way to dosomething similar?tmg
09/12/2019, 12:32 PM@AliasFor
cannot be applied in properties on the constructor, and the annoation class can't have members