Laird Nelson

Results 158 comments of Laird Nelson

Isn't returning `null` [what it did originally](https://github.com/hibernate/hibernate-orm/commit/04fbabce2e51b79ee1d20b8093916113d450e903)? That was the right call all along.

You might also look into CDI's built-in asynchronous event support which may be a simpler way to do this, complete with things like [executor customization etc.](https://jakarta.ee/specifications/cdi/4.0/apidocs/jakarta.cdi/jakarta/enterprise/event/event#fireAsync(U,jakarta.enterprise.event.NotificationOptions)). (Weld itself may have...

Note that the specification in question is CDI, not Jakarta Validation.

I've boiled down your case to a simple command-line application that I made using `helidon init` (and then removed everything that wasn't necessary, and used H2 as the backing database...

When run from the command line, this works: ``` % JAVA_HOME=$(/usr/libexec/java_home -v21) java -jar target/ucpni.jar There is no Helidon logging implementation on classpath, skipping log configuration. Feb 27, 2024 2:37:04...

When run with the `native-image` profile, I get this (stand back): ``` [INFO] --- native-maven-plugin:0.9.27:compile (build-native-image) @ ucpni --- [INFO] Found GraalVM installation from GRAALVM_HOME variable. [WARNING] Ignoring ImageClasspath Entry...

I am not at all an expert on native image and I am not entirely sure what I am staring at but I will continue to look at this error...

Additionally, if I add `-DbuildArgs=--trace-class-initialization=io.helidon.config.PropertiesConfigParser` (for example) to the command line, native image building fails due to a problem with `oracle.nativeimage.NativeImageFeature`, which I think must be in one of the...

Progress update: I've pared the example down even further to a simple CDI program that does not use or include anything database-related at all. I still get the same error....

I have managed to figure out which libraries of ours contribute which command line arguments to the native image build process (for example, `helidon-microprofile-config` [contributes command line arguments that are...