Toshiaki Maki
Toshiaki Maki
Added [RSC](https://github.com/making/rsc) as another CLI
Bean Validation supports following types * `java.util.Date` * `java.util.Calendar` * `java.time.Instant` * `java.time.LocalDate` * `java.time.LocalDateTime` * `java.time.LocalTime` * `java.time.MonthDay` * `java.time.OffsetDateTime` * `java.time.OffsetTime` * `java.time.Year` * `java.time.YearMonth` * `java.time.ZonedDateTime` *...
```java public class Message { @NotEmpty private String text; public String getText() { return text; } public void setText(String text) { this.text = text; } } ``` ↓ ```java import...
**Describe the problem/challenge you have** It may be expected to set the contents of the config file as a variable in a ytt template file that is applied via App...
Non-blocking parsing was introduced by Jackson 2.9 https://github.com/FasterXML/jackson-core/issues/57 Currently, JSON and Smile are supported. It would be great for msgpack to support that to leverage [Spring WebFlux](https://docs.spring.io/spring/docs/current/spring-framework-reference/web-reactive.html), [Reactive Streams](http://www.reactive-streams.org/) and...
https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.7-Release-Notes#changes-to-auto-configuration see also https://github.com/spring-projects/spring-boot/issues/29699
Some OpenAI compatible servers have unknown properties in the error response, so it is better to use an existing ObjectMapper in the ErrorHandler.