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

I built a Spring Boot application using Maven, and the project compiles without any errors. However, when I run the packaged jar using : java -jar target/myapp-0.0.1-SNAPSHOT.jar I get the following ...
Basudev Haldar's user avatar
0 votes
1 answer
60 views

I'm building a Quran app using Jetpack Compose in Kotlin. The app builds successfully and installs on a real Android device (Samsung S908E), but crashes instantly on launch. Crash Log: Caused by: java....
Nasser Abouzide's user avatar
0 votes
1 answer
65 views

I am trying to create a table in Hbase using Java, but I keep getting a ClassNotFoundException. import org.apache.hadoop.hbase.HBaseConfiguration; import org.apache.hadoop.hbase.HColumnDescriptor; ...
Crimson Jester's user avatar
-2 votes
2 answers
85 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
0 votes
1 answer
79 views

I write you this message because I have an error when trying to execute a Spring batch job that reads messages from a Kafka topic. This job is triggered after calling an URL in my web app. The final ...
Kris's user avatar
  • 501
1 vote
1 answer
181 views

I'm trying to use the Trino Spark connector in an AWS Glue 4.0 job, but I'm running into issues loading the connector. Relevant code in my glue job submission script: trino_drivers_list = ...
user100855's user avatar
-2 votes
1 answer
243 views

There is an error when I want to connect to a PostgreSQL database from a servlet connection, a ClassNotFoundException for the PostgreSQL driver, with some details about servlet. Class.forName("...
mohammad taha's user avatar
0 votes
1 answer
97 views

I'm developing a Flutter app using Firebase Cloud Messaging (FCM) for push notifications. The app crashes every time I receive a notification. This problem began after implementing FCM, and I’ve ...
Otmane Elb Elbaghzaoui's user avatar
0 votes
1 answer
68 views

I am run my java code in IntelliJ it is showing this error: Error: Could not find or load main class CWA_01_INTRO Caused by: java.lang.ClassNotFoundException: CWA_01_INTRO whereas the same code is ...
CodeWithAayush 's user avatar
0 votes
1 answer
231 views

I have ubuntu 20.04.6. Openjdk 11. mysql-connector-java-8.0.20.jar, renamed to mysql.jar CLASSPATH="/var/www/html/java/mysql.jar", classpath stablished in ~/.bashrc After installing openjdk ...
Ariel's user avatar
  • 1
0 votes
0 answers
68 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
88 views

I am trying to develop a plugin for IntelliJ Idea community edition, I am creating the plugin project like shown Creating Plugin Project I am using Java to develop the plugin and gradle as my build ...
Dharun Pk's user avatar
-1 votes
1 answer
105 views

I am having problems understanding how packages work. Not using any IDE. I have the following folder structure: ~/dropbox/api/data Inside the data folder, there are (only) Producer.java, Consumer.java....
limestreetlab's user avatar
0 votes
1 answer
85 views

The problem I want to run java code from the command line, and I don't understand why I manage to do that from within the folder holding the code, but not from another folder. I am on Windows and am ...
rdv's user avatar
  • 732
0 votes
0 answers
122 views

I need to use the --runtime-name argument when deploying an application for giving a stable name for HA singleton deployment which uses the runtime-name (deployment) for distinguishing singleton ...
fs-chris's user avatar
-1 votes
1 answer
69 views

I have created a project in Eclipse, and I want to run it using cmd, so I have copied the .bin folder to my desktop and from that address I am trying to run it, my project uses libraries, specifically ...
Ramon Salazar's user avatar
-1 votes
1 answer
4k views

I am working with Spring MVC. All dependencies of Spring are added so app want to add micrometer-core for io/micrometer/observation/transport/RequestReplyReceiverContext and I did it My pom.xml > `&...
Vidal Cortés's user avatar
0 votes
1 answer
80 views

This is BlogController: package com.taskproject.blogproject.controller; import com.taskproject.blogproject.entities.Blog; import com.taskproject.blogproject.repositories.BlogRepository; import org....
amin's user avatar
  • 3
1 vote
2 answers
732 views

I get the following exception when running this code private static String getClipboard() { try { return (String) Toolkit.getDefaultToolkit().getSystemClipboard().getData(...
Dari_OS's user avatar
  • 23
0 votes
1 answer
306 views

I'm developing an Android app using Hilt for dependency injection, but when I run the app, I get a ClassNotFoundException for my MainApp class. Here's the logcat error message: Process: com.nat....
mohamed's user avatar
  • 11
0 votes
1 answer
375 views

After making a JavaFX Application, the hardest part has been trying to export it. I am using openjfx 19 and openjdk 11 and want to export the Application using the javafx-maven-plugin javafx:jlink. In ...
Ayame4's user avatar
  • 1
-1 votes
1 answer
1k views

I have a folder named java where i keep all the .java files Recently I created a new java file to solve a simple DSA problem named MinimumTime.java public class MinimumTime { public static void ...
Azizur Rahaman 1063's user avatar
0 votes
1 answer
542 views

I am getting error while running all Maven projects in Eclipse as Maven build, but they run successfully if I run manually in Eclipse. Can someone please help. I have tried running it from Command ...
Madhurjya Saha's user avatar
0 votes
0 answers
755 views

I'm working on a project that involves a java program accessing a mysql database and display that info on a tomcat page. I have it working on my local machine but I want it running on my Raspberry Pi ...
nickywestside's user avatar
0 votes
0 answers
307 views

I am a beginner java developer using Eclipse. I want to read in a CSV file and want to use opencsv utilities as a reader (and use other opencsv utilities when I get off the ground). I have ...
Kieran Hooks's user avatar

1
2 3 4 5
45