croudet
croudet
When I remove the `setString` for the jdbc case I have an Exception: ``` org.postgresql.util.PSQLException: No value specified for parameter 1. ```
I confirm that if I remove the placeholder in `SELECT distinct ? || deviceid`. The exception does no longer occur.
`define` does not work. It does not replace the token in the sql. Named binding does not work, the same exception is thrown: `SELECT distinct :prefix || deviceid ||` ```...
These placeholders are runtime configuration flags. They cannot be resolved at compilation time.
Or you can use a server context path with an HttpFiler: https://micronaut-projects.github.io/micronaut-openapi/latest/guide/index.html#openApiViews
I have tested a dirty hack, where the spec file is parsed, placeholders resolved and then served: https://gist.github.com/croudet/d41cfd69021257948c550cac08f13528
Hello, I am preparing for migration to spring-boot 3, I am using spring-security 6.0.0-SNAPSHOT. I think I have the same issue, but with a controller, returning a `ResponseEntity`. I have...
@marcusdacoregio So with the filter I no longer have the exception.
I had the same problem. I had to annotate my model bean with `@Introspected` to make it work with openj9. Looks like the problem is in `BeanMap.of`: https://github.com/micronaut-projects/micronaut-views/blob/1234b6f27961267c6e52f9fee5c69359182c8fda/views-core/src/main/java/io/micronaut/views/ViewsRenderer.java#L86