Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [java]

Java is a high-level object-oriented programming language. Use this tag when you're having problems using or understanding the language itself. This tag is frequently used alongside other tags for libraries and/or frameworks used by Java developers.

1 vote
1 answer
54 views
+50

GraalVM JS embedding with Uber Jar from Gradle

I am trying to integrate graalvm-js into my java application. I found the polyglot embedding demo: https://github.com/graalvm/polyglot-embedding-demo I set it up and using the mavin assembly plugin I ...
Jonathan R's user avatar
  • 3,810
0 votes
0 answers
56 views
+50

Spring Cloud Gateway with Kubernetes discovery client for http and grpc requests

I'm trying to implement gateway service using Spring Cloud Gateway with k8s client dicovery that will redirect both http/1.1 and http/2(GRPC) requests I set the following configurations: server: ...
Lior Derei's user avatar
0 votes
1 answer
61 views
+100

JDBI Json type column mapping to custom class

I am extremely sorry for posting this large question but I have been struggling with the argument factory and column mapper for too long. MAIN QUESTION: I would like the Argument Factory and Column ...
bigbang's user avatar
  • 17
2 votes
1 answer
80 views
+100

How to work with (Zip)FileSystems - keep open or re-open as needed?

I'm working on a project with Java 8. The component I'm working on provides access to files, e.g. config files, that are classpath resources. It's my first time working with nio.file.Pathand nio.file....
CJOverflow's user avatar