
How can I use environment specific variables in micronaut?
Jul 20, 2020 · The micronaut documentation, unfortunately, does not make a lot of sense to me, as I do not have a Java background. A lot of the terms like "ApplicationContext" make sense in …
Conflicts between Lombok and Micronaut: from not getting Id to …
Apr 4, 2025 · I have created two projects using the Micronaut framework (from the Micronaut Launch website) to explore some of its key concepts. In the first project, I initially included …
Micronaut : No bean introspection available for external class
Mar 6, 2024 · To introspect external classes you need to use the @Introspected annotation in a slightly different way than for internal classes. Add the @Introspected(classes = …
Micronaut data with JDBC + JPA annotation findAll or findById not ...
Jan 5, 2025 · Using Micronaut data with JDBC + JPA annotation, to get the entity data with below dependencies dependencies { annotationProcessor ("org.projectlombok:lombok") …
Micronaut @SerdeImport annotation not working with Kotlin
Jan 20, 2023 · I am working on developing an application using Micronaut framework with Kotlin language. However, I am facing an issue where @SerdeImport annotation is not being …
Micronaut mTLS with Self-Signed Certificate Without CA - Getting ...
Feb 27, 2025 · I am trying to configure Micronaut HTTP Client to communicate with a self-signed HTTPS server using mutual TLS (mTLS). The server does not use a CA certificate, and I have …
mysql - How do I use @Query in a Micronaut Data repository to …
May 16, 2022 · I was under the impression that Micronaut Data would take care of this mapping. But I also understand if Micronaut Data isn't capable of doing this, and I'm required to do it …
java - Micronaut @ConfigurationProperties not loading in a List of ...
Mar 22, 2024 · Micronaut @ConfigurationProperties not loading in a List of pojos correctly Asked 1 year, 9 months ago Modified 1 year, 9 months ago Viewed 914 times
Yaml dependency error with micronaut app start up - Stack Overflow
Nov 2, 2023 · The problem is that you are trying to use SnakeYAML 2.0 with Micronaut 3.7.1. Micronaut 3.7.x versions were released before SnakeYAML 2.0, which contained breaking …
kotlin - Enabling HTTPS support on micronaut with Jetty not …
Feb 26, 2021 · micronaut.ssl.enabled=true micronaut.ssl.buildSelfSigned=true and the webserver should automatically serve https on port 8443 with a newly generated self-signed certificate. …