Sjaak Derksen
Sjaak Derksen
Status: A bit of tinkering to find a good solution. Making use of CI..
Give a clear error message if another type is used.
Like this: ``` java if ( date == null || date.trim().isEmpty()) { return null; } ```
I like the Quarkus example. However, it seems to use the [Binary Content Mode](https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/bindings/http-protocol-binding.md#31-binary-content-mode). I however require the [Structured Content Mode](https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/bindings/http-protocol-binding.md#32-structured-content-mode). Initially I did not even notice that the binary...
rider-cdi transitively pulls in the `javax` variant of core. One needs to provide some specific exclusion to fix this. This is a bit confusing. Version 1.41.0. Solution: ```xml com.github.database-rider rider-cdi...
I use the following configuration ```xml nl.bro.services.common common_xsd nl.bro.services.ss.bhr_gt bhr_gt_xsd nl.bro.opengis bro_gml org.jvnet.jaxb2.maven2 maven-jaxb2-plugin ${project.basedir}/src/main/resources WSDL https://schema.broservices.nl/wsdl/dsbhr-gt/0.1/dsbhr-gt.wsdl ${project.basedir}/src/main/resources/META-INF/ binding.xjb ${project.basedir}/src/main/resources/META-INF/catalog.xml true -npa ``` The project contains both an xsd and...
I'm migrating to jakarta with many of our projects relying on opengis (gml, observation and measurements, sensorweb enablement). After the migration I'm having problems when running my webservices and unit...
**Describe the bug** * Spring dependency in quarkus code `RequestParam` in REST resource. Should this be `QueryParam` ? * `JsonIgnore` (whithout import) on generated entity class **To Reproduce** Steps to...