Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
101 views

A year ago I created an Eclipse project (Eclipse 2020-06, Java 8, Win 10) that uses the GIS LAStools libary to e.g. extract data from a couple of files. I'm now using Win 11 on a different PC and want ...
Neph's user avatar
  • 2,013
0 votes
0 answers
55 views

Here’s my setup: Eclipse IDE for Java Developers (latest version) JDK / JRE version: JavaSE-21 (from Eclipse’s internal JRE) Project location: D:\Dự án\CF TDLT\Javanew\src\example\MainClass.java Clean ...
Fox Fox's user avatar
0 votes
0 answers
56 views

I'm testing Theia as an Eclipse replacement IDE for my Java projects and am trying to replicate the familiar project structure: a workspace directory containing a folder per project, each project ...
Matthieu's user avatar
  • 3,146
4 votes
0 answers
63 views

I’m a contributor of the OpenSource project VanillaBP which is providing hexagonal architecture to business processing applications using process engines. In the past VanillaBP was only available to ...
Stephan Pelikan's user avatar
0 votes
1 answer
70 views

I am creating a JavaFX app with several dependencies installed via maven. One of the dependencies is a third party JAR (modified version of the org.llrp.ltk lib for RFID) which does not have a ...
Furious Gamer's user avatar
0 votes
1 answer
40 views

I have set JAVA_HOME to C:\Program Files\Java\jdk-17 Path: includes %JAVA_HOME%\bin and I've reinstalled NetBeans 24 and ensured that the setup points to the jdk-17 file, and the Tools\Java Platforms ...
Ron's user avatar
  • 67
0 votes
1 answer
45 views

I am trying to validate the body of a JSON response against a schema using the matchesJsonSchemaInClasspath() method from the RestAssured library. However, I am encountering the following error during ...
Gabriel Carvalho's user avatar
2 votes
1 answer
318 views

I'm working on a Java 21 application that uses Bouncy Castle cryptographic libraries. In most runtime modes, I rely on the FIPS-compliant provider (bc-fips:2.1.0). However, in one specific mode of ...
CodeSeeker's user avatar
0 votes
1 answer
37 views

I have a Groovy Maven project, and I have a JSON schema named layout-schema.json in src/main/resources/choosechee/cheeboard. I have a class called LayoutReader that needs to use the schema. When I run ...
Choosechee's user avatar
0 votes
1 answer
92 views

My Java program relies on a third-party configuration directory as part of its classpath. Initially, I directly appended the entire directory to the classpath using -cp /a/b/c:. However, I later ...
hehe's user avatar
  • 417
0 votes
0 answers
43 views

Is there any Pythonic way to implement a driver app as a standalone Python application, when the executor is in Kubernetes, relatively easily? It is desired: not to make calls like spark-submit as a ...
Asc's user avatar
  • 1
0 votes
1 answer
39 views

I have a task which creates a directory within build-directory. There is one file within the directory. I am trying to add that directory to classpath from within a gradle plugin written in java. ...
devxgb's user avatar
  • 237
0 votes
1 answer
348 views

I'm trying to run JUnit tests in Visual Studio Code without using Maven or Gradle, just using plain .java files and .jar libraries. Project Setup: I'm using VS Code with the Java Extension Pack, and ...
Crescenzo De Marco's user avatar
-2 votes
2 answers
93 views

I understood how the classpath is necessary for running the project but I still have some doubt. I compiled my class using javac /Users/username/IdeaProjects/leetcodePrograms/src/problems/...
Salil Hardeniya's user avatar
1 vote
0 answers
74 views

I'm using an Eclipse workspace where I work on several projects that depend on each other, where some haven't been updated in a while and have older version dependencies. - My Application | +- dep-...
Guss's user avatar
  • 32.8k
1 vote
1 answer
204 views

What am I doing ? trying to create a Otel Extension and everything is working fine until the moment I use external libraries. Relevant context information: I am using Maven instead of Gradle. I don'...
Unova's user avatar
  • 11
0 votes
1 answer
70 views

I have a project MyProject that includes a shared library, MyShared. I created a Debug Configuration for this project, which specifies -cp MyProject.main as its "module whose classpath should be ...
Medusa's user avatar
  • 633
1 vote
0 answers
68 views

I've been using JEP 458 to great effect, until I ran into a weird situation today. Here is some relevant info. $ java --version openjdk 24-ea 2025-03-18 OpenJDK Runtime Environment (build 24-ea+25-...
davidalayachew's user avatar
3 votes
0 answers
38 views

I have a spring-boot application that wants to process a number of JSON-files from within the classpath through classpath*:/*.json. Everything works fine when I start the application: in eclipse ...
Grey Area's user avatar
0 votes
0 answers
60 views

I'm working on this new project where the eclipse .classpath file is stored in the repo. I imported my project into IntelliJ as a gradle project as there is a build.gradle file. When I build the ...
j will's user avatar
  • 3,827
0 votes
0 answers
66 views

/home/thiru/VS Code Files/Java Files ├── F │ ├── test.class │ └── test.java └── G ├── c.class └── c.java c.java imports F package and has main function When I use javac and java : :~/VS ...
Thirumal R's user avatar
-1 votes
1 answer
91 views

I am trying to create a program that fetches data from a url. When I try to debug it with VS code it outputs nothing. Even if I put "System.out.print("Something");" after the catch ...
granitemode's user avatar
0 votes
1 answer
79 views

Have a jar file of an application, there are 2 different external configuration files which needs to be execute during execution of jar file as the backend code of application needs some property ...
raga_717's user avatar
1 vote
1 answer
84 views

My app is C++, it creates a JNI JVM (raw JVM, with class path to some of my .class files). The JVM above is rather a core Java Virtual Machine without knowing about android. How to add class path to ...
Dan D's user avatar
  • 8,779
0 votes
0 answers
43 views

Projects I have 2 Gradle based Java projects which both get packaged as .jar files: Core A java-library Creates a .jar containing the projects .class files and a lib/ inside the .jar containing all ...
bobbyrne01's user avatar
  • 6,843
1 vote
1 answer
121 views

I have an issue with ant build while including external JAR file. I have a JAR file from another project that I want to import. <?xml version="1.0" encoding="UTF-8"?> <...
Preeti 's user avatar
  • 793
1 vote
1 answer
449 views

We use jakarta.xml.ws.Provider class (lib version:4.0.2) in our project. This class chooses the com.sun.xml.ws.spi.ProviderImpl class as the provider, which is related to com.sun.xml:jaxws-rt library (...
F Goli's user avatar
  • 23
0 votes
0 answers
71 views

I am very aware that this covers the same error and output Caused by: java.lang.ClassNotFoundException. The distinction here is i'm not using Java, I'm using Scala. I have not seen a question that ...
Michael Schmidt's user avatar
0 votes
1 answer
550 views

I've been having this same problem with building my android game from Unity. I recently changed from version 2021.3.7f1 to 2022.3.29f1 and then back again trying to fix a separate issue with my APK ...
Matt Radin's user avatar
5 votes
0 answers
278 views

In a newly created project via freshly installed IntelliJ IDEA, I create simple scratch kotlin file with simple coroutine. The code works well in the "interactive window" (the one on the ...
Vladimir Zozulya's user avatar
-1 votes
2 answers
82 views

In Netbeans 14, I created a new project. The IDE created it with the main class automatically populated. Once built, the JAR does not run, be it in Linux or Windows. Package name: com.Myself....
BusterZo's user avatar
0 votes
0 answers
28 views

I have the most annoying problem in my eclipse: Everytime i edit a java file and save it my project somehow looses knowledge of some classes in my classpath. For example i am writing junit tests with ...
flixe's user avatar
  • 672
0 votes
1 answer
336 views

In intellij, you have to setup a run configuration to be able to run an app. In the run config, you specify the jdk, then -cp [your module], then the main class, then you can add "-javaagent:...
John Little's user avatar
  • 12.8k
0 votes
1 answer
115 views

I am using flutter 3.22.1 (gradle version is:7.6.3-all) and get "Could not resolve all files for configuration 'classpath'." when run project in android studio. error image this is my 'build....
abolfazl ghalibaf's user avatar
0 votes
0 answers
163 views

dependencies { classpath 'com.android.tools.build:gradle:3.6.3' classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' } I need to add this part to the gradle, but I don't know where to ...
Minuffy's user avatar
0 votes
0 answers
148 views

I am developing a Java application that uses SigUsb.dll for interfacing with a digital signature device. However, I am encountering a java.lang.UnsatisfiedLinkError stating that dependent libraries ...
Federico Caimi's user avatar
1 vote
1 answer
59 views

My project is in the following structure: src └── main └── java └── tests ├── functional │ ├── TestA │ └── TestB ├── verification ...
RanAbitbul's user avatar
1 vote
0 answers
70 views

I've built a simple Java program using some Processing classes, and I'm trying to get them to run from the command line (so I can get them to run on a Raspberry Pi without an IDE). I can get the .java ...
Spenser Spratlin's user avatar
0 votes
1 answer
67 views

A requirement emerged in which an xsd.zip file containing many schemas needs to be loaded at runtime. This ZIP file will be available on classpath, on top of that, it contains many schemas with xsd:...
u-ways's user avatar
  • 8,282
1 vote
0 answers
49 views

I want to have a listing of all jars that are included in my application during runtime (Java 8 compatible). Therefore I fetch all files that ends with .jar from the classpath (System.getProperty(&...
Szdnez's user avatar
  • 69
0 votes
0 answers
290 views

Getting below error: Enabling XXE protection failed. The attribute http://javax.xml.XMLConstants/property/accessExternalDTD is not supported by the TransformerFactory. This usually mean an outdated ...
kaveri marathe's user avatar
-1 votes
1 answer
463 views

We are getting below exception 2024-03-13 11:42:00,723 ERROR | Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [java.lang.ClassNotFoundException: org.apache....
Subodh Joshi's user avatar
  • 13.7k
0 votes
1 answer
72 views

I have text file, which I want to read from, but I don`t really know how to navigate from the class path to the path where the file is. This is my project structure: Project structure photo(Intellij) ...
Jonas Ohlendorf's user avatar
0 votes
1 answer
171 views

I'm currently contributing to the OpenLineage Spark integration, a project entirely in Java and built with Gradle (8.4). It's a multi-module project with modules named app, shared, spark2, spark3, ...
Marley's user avatar
  • 391
0 votes
0 answers
35 views

I'm trying to establish a connection to my SQLite database. However, I always get the same exception when trying to run the file. Here's my code: import javafx.scene.control.Label; import javafx....
khalifakush's user avatar
1 vote
1 answer
188 views

According to the documentation, classpath is app/test/java. So how to access the json files inside resources folder in spring-boot.
Nagulan S's user avatar
  • 770
-1 votes
3 answers
124 views

I want to run this GitHub java program: https://github.com/ss2cp/AI-TicketToRide According to the README.md it should run with src/ttr.main/TTRMain I am trying to start the game in linux, but I keep ...
ffonz's user avatar
  • 1,426
-1 votes
1 answer
2k views

I'm having difficulties adding ANTLR to my Java classpath and getting it to work. I've followed the usual steps, but I'm still encountering the error message: package org.antlr.v4.runtime.tree does ...
Cian Sullivan's user avatar
0 votes
1 answer
154 views

I have parent jar. This parent jar has a resource on its classpath. This parent jar has some 3rd party dependency jar embedded in it (child jar). The child jar has some java code which tries to access ...
Gam Sham's user avatar
0 votes
0 answers
36 views

I am trying to wrangle my professor's code which is organized in the following fashion: home directory src bn base core parser util I've managed to compile it all, but ...
clcman's user avatar
  • 1

1
2 3 4 5
98