Sam Cao

Results 319 comments of Sam Cao

You may pass the args via options. I haven't tried your case, but you could take a try.

You might review this [doc](https://www.caoccao.com/Javet/reference/javadoc/com/caoccao/javet/interop/options/NodeRuntimeOptions.html) for detail. ```java public NodeRuntimeOptions setConsoleArguments(java.lang.String[] consoleArguments) ```

I always build v8_monolith, then build a DLL on top of it. It works well with v12.x.

Please leave a repo that can reproduce this issue.

Please refer to this [issue](https://github.com/spring-projects/spring-boot/issues/35659) for some ideas. I think basically you will have to tweak the `reflect-config.json` or upgrade to the latest Spring Boot.

I think you need to register the following classes. * `com.caoccao.javet.interop.loader.JavetLibLoader` * `com.caoccao.javet.interop.NodeNative` * `com.caoccao.javet.interop.V8Native` You may ping me at discord if you have any questions.

I think the problem might be: The jar you built is not a fat jar. Let's take my sample project [JavetShell](https://github.com/caoccao/JavetShell) for an instance. The gradle build script snippet is...

Please leave a repo with the issue you mentioned.

Please set a breakpoint and look inside. I don't understand why you want to add integer 'line' and integer 'column'.

Did you really understand my question? `it.getSpan().getLine()+ it.getSpan().getColumn()` only gives you one integer.