Please explain the following about "Cannot find symbol", "Cannot resolve symbol" or "Symbol not found" errors (in Java): What do they mean? What things can caus
I am (beginner, so go easy on me), trying to write unit tests for some of the custom functions I wrote on an appium test framework. public class BasePageNewTest
How do I count the amount of times a substring appears in a string? So far I have static boolean doesAppear(String a, String b){ boolean a
Using only the standard Java library, what is a simple mechanism to join strings up to a limit, and append an ellipsis when the limit results in a shorter strin
I am developing an android studio project and would like to be able to access data from a database sitting on the pc which I am programming from. I would like t
This is a mapper interface for mapping: @Mapper public interface DoctorMapper { DoctorMapper INSTANCE = Mappers.getMapper(DoctorMapper.class); DoctorDto toD
Java Code @Component @RequiredArgsConstructor public class WireInboundFileListener extends RouteBuilder { private final JwtWireTokenService jwtWireTokenSe
I have a problem with the persistence in a java web application. We use Ninjaframework (6.8.1) which uses Guice as dependency injection framework and for persis
I wanted to use a function available in Intellij that allows to write this in java: "Hello, World!".sout And have it converted to: System.out.println("Hello, W
I have created a java program in intellij idea. I need to send it to my friend. How do we create a doc file for this to send it to him ?
I'm creating a sample demo application with JavaFX in IntelliJ, but I need to use a library called the JavaFaker library. I'm using Gradle as the build system,
I am trying to migrate existing spring boot application to spring native. In this case, I have application.properties and application-dev.properties. package co
I'm trying to send simple message to a topic from sender Spring Boot app to a receiver Spring Boot app. But I keep getting two exceptions. First exception occur
I have a long-running task of creating a bitmap saving it and recreating more bitmaps which I was doing on a single background thread ExecutorService executor =
I have an application with thousands of tests through MockMvc. The tests are running in band, so 1 at a time and whole process takes hours. I decided to try par
I changed my IntelliJs base JDK, to try and fix an error, and now it will not even let me open up Intellij. I tried to re-install, but that did not work. Intell
I am very new to app development and i'm trying to create an app connect to an sql server. The app pulls data from the server and displays it in a list view. I
I have this Java algorithm and I am having trouble printing the number of steps it takes to solve the sorting. Here is the code /* The main function that im
I have a directory in which I receive orders as XML file. I want to parse this file and then do some things with it. I can set a scheduled job to check this dir
I have been going over the android package a bit. I am using sdk 30 and for example in SensorManager.java there is a function protected abstract List<Sensor&