quarkus-panache

Quarkus - Error sending form data with date field

醉酒当歌 提交于 2020-06-29 04:22:09
问题 I'm using Quarkus version 1.5.1, however when trying to send data of type LocalDate (or Date) of a form, it returns the following error message: java.lang.RuntimeException: RESTEASY007545: Unable to find a MessageBodyReader for media type: text / plain; charset = us-ascii and class type java.time.LocalDate I have already imported the following dependencies, but the error persists. <dependency> <groupId> io.quarkus </groupId> <artifactId> quarkus-resteasy </artifactId> </dependency>

Multiple Datasource with Micronautor or Quarkus

匆匆过客 提交于 2020-05-16 05:54:31
问题 I want to migrate to Micronaut or Quarkus from Spring Boot, but in Spring boot there is one feature as AbstractRoutingDataSource, which in runtime change datasouce. Is there anything similar or any mechanism in micronaut or quarkus which gives opportunity to work with multiple datasources in runtime?? Spring-boot feature for reference https://medium.com/innomizetech/dynamic-multi-database-application-with-spring-boot-7c61a743e914 回答1: You can define multiple data sources in properties. And