Can Bezmen

Results 10 comments of Can Bezmen

Hi @zefexdeveloper I figured out the solution to use shared steps. You can use callback to send account to shared steps. Example: ```java // shared-steps.js export const givenIHaveXDollarsInMyBankAccount = (given,...

fixes #127 Resolves bencompton/jest-cucumber#127

Hi @DmitriiVashchenko, I think your expectation works on newer version of feign. I'm using Spring boot 2.5.2, Spring Cloud 2020.0.3, Java 11. ```java @SpringBootApplication @EnableFeignClients @Slf4j public class FeignCanApplication {...

Hi @DmitriiVashchenko I think it is not spring-open-feign problem. `DateTimeFormat.ISO`only supports: * DATE * TIME * DATE_TIME * NONE You can add custom conversion service. Please check this link https://www.baeldung.com/spring-date-parameters

Hi @DmitriiVashchenko, QueryRequestParams is also fail with `dd.MM.yyyy` because it is not a valid pattern. When you call it with wrong pattern it will throw DateTimeParseException. You have to send...

Hi @DevDengCha, If you share example minimal repo which describes your bug, I will try to help you.

You can already archive this by adding to format registrar. @wimdeblauwe ```java @Bean FeignFormatterRegistrar feignFormatterRegistrar() { return registry -> registry.addConverter(new UserIdConverter()); } ```

@OlgaMaciaszek I think you can close this issue?