I’m building a native image using the Gluonfx plugin. I’m doing this procedure inside a docker container. The image builds the 7 steps, but doing the link throws an error complaining about missing ie4uinit.exe. These are the error logs: I would like to know if it’s possible to add this dependency to my docker image. Or, if not possible, a
Tag: graalvm
Is there a way to use a java object as an argument for a function and return one of said objects’s values in GraalJS?
I want to use a Java object new Train() as an argument to pass into a JavaScript function, here is the Java code JavaScript code As of right now it puts this error in the console [16:56:42] [INFO]: [STDERR]: javax.script.ScriptException: org.graalvm.polyglot.PolyglotException: TypeError: invokeMember (getSpeed) on ScriptExecutor$Train@429b2a7b failed due to: Unknown identifier: getSpeed [16:56:42] [INFO]: [STDERR]: at com.oracle.truffle.js.scriptengine.GraalJSScriptEngine.toScriptException(GraalJSScriptEngine.java:483) [16:56:42] [INFO]: [STDERR]:
Spring Boot Docker Native image of Spring R2DBC application on Java 16 fails on unsupported methdod
I have a simple application built on top of org.springframework.boot:spring-boot-starter-parent version 2.5.4-SNAPSHOT and some derived dependencies: org.springframework.boot:spring-boot-starter-data-r2dbc org.springframework.boot:spring-boot-starter-webflux org.springframework.boot:spring-boot-starter-actuator io.r2dbc:r2dbc-postgresql I use org.springframework.experimental:spring-native version 0.10.3 to enable Spring Native and build using the following plugin: I build the image using ./mvnw.cmd spring-boot:build-image -Pnative-docker -DskipTests, I get assured Java 16 is bootstrapped correctly, and then the image exists (why it is
How to set up different graalvm-home and java-home in CI server to build native image
Issue: I want has two graalvm version in same CI server to build different quarkus version service project. resason: Because a few old service use quarkus-1.5.1 & graalvm-20.0.0 and I can’t …
How to exit infinite JS execution loop when reading/loading Javascript in Java using GraalVM?
I found sandbox options as a way to set sandbox.MaxCPUTime in the graalVM documentation, to limit how long the thread runs – https://www.graalvm.org/reference-manual/embed-languages/ I’ve tried the following code – This has been failing for me with the error – Is there a better way to achieve this or a way I can make these sandbox options work? Answer You may
How to call a Java entrypoint method with non-primitive types as parameters from C++ using GraalVM
I am trying to create a shared library(dll with header and lib files) of a java code using graalvm. there will be one java method with 2 parameters of type String which I will call from c++. I am …
Can JVM bytecode running on the GraalVM be instrumented by a custom `TruffleInstrument`?
I would like to write a Truffle instrument which can instrument Java programs (or at least JVM bytecode programs) when they are run on GraalVM. I have been investigating different ways to perform …
Cannot compile simple “Hello World” Java application with native-image on Windows
I’m trying to compile a simple Java Hello World application to native code using the native-image utility provided by GraalVM on Windows but I always run into errors (see below). HelloWorld.java: …
Nashorn alternative for Java 11 [closed]
I am using Nashorn JavaScript Engine in Java 11 which works fine except it will be deprecated soon. I have tried GraalVM which I find quite worse as it takes 13-14 seconds to execute a simple …