Skip to main content

All Questions

Tagged with or
Filter by
Sorted by
Tagged with
0 votes
0 answers
68 views

Here is android studio project app module script file(build.gradle.kts) segment: android { .... compileOptions { sourceCompatibility = JavaVersion.VERSION_11 ...
LittleAndroid's user avatar
0 votes
0 answers
27 views

we use OpenEJB 7.0.9 for Unit-Testing with Java 8. Now we switch our Application to Java 11 and tried to Upgrade OpenEJB to 8.0.16. But since Version 7.1.4 and 8.0.0 (org.apache.tomee -> openejb-...
Martin Schlesier's user avatar
0 votes
1 answer
564 views

I've been trying to ./install.sh eprosima fastdds 3.2.0 Linux on a Raspberry Pi but running the install always returns E: Package 'openjdk-11-jdk-headless' has no installation candidate. I've tried ...
klemenhe's user avatar
2 votes
0 answers
63 views

After upgrading our Spring Boot application from version 2.5.12 to 3.1, we started experiencing issues when calling both SOAP and REST APIs. Below are the details of the error we are encountering: ...
Venkatesh Maryala's user avatar
2 votes
1 answer
185 views

I am trying to install IBM Liberty version 24.0.0.6 with Java 11 on an AIX server using the following command: ./imcl install com.ibm.websphere.liberty.ND_24.0.6.20240603_2002,com.ibm.java.jdk.v11_11....
Jason Skeel's user avatar
-1 votes
1 answer
77 views

I tried running few flutter projects but it gives me this same error - ashvinstech@Ashvins-MacBook-Air untitled1 % flutter run Launching lib/main.dart on Redmi Note 7 in debug mode... FAILURE: Build ...
Ashvin Bhagat's user avatar
0 votes
0 answers
75 views

Facing below issue on bazel build on M1 Pro (MacOS - 13.6.5) bazel build :all --config=mac64 WARNING: Option '...
rishi007bansod's user avatar
0 votes
0 answers
67 views

If I remove in build.gradle implementation('net.sf.jodreports:jodreports:2.4.0') the errors disappear, but I need that for my code to compile If I use implementation('net.sf.jodreports:jodreports:2.4....
KurtJ's user avatar
  • 33
8 votes
2 answers
1k views

Today, while working on a project for a college “Design Patterns” course (Java 11 required), I discovered a problem with the access restriction of the access modifier that can be bypassed by declaring ...
Lorenzo Yang's user avatar
0 votes
0 answers
36 views

I'm using Spring Boot 2.7 I would like to execute a process 120 (or another value stablished in application.yml) seconds after the microservice has started. This is my code: import org.springframework....
joseluisbz's user avatar
  • 1,696
-1 votes
1 answer
54 views

I am running a Java 11 app inside docker container on my machine and trying to connect it via VisualVM. I have already added required JMX parameters in CMD instruction of my Dockerfile -Dcom.sun....
Manish's user avatar
  • 1,525
0 votes
1 answer
150 views

I've got Springboot apps which uses OpenJDK running in container and runs as pid 1. These are non root containers and imx remote enabled. I am trying to generate heap dumps on demand for these running ...
unbox-us's user avatar
  • 433
-1 votes
1 answer
1k views

The differences between the JDBC drivers supporting Oracle 19c isn't fully clear to me. I am running an application on Red Hat with OpenJDK 11.0.24 and I seem to have the following options: Oracle ...
Matt Miles's user avatar
0 votes
1 answer
52 views

I have used datastax driver 3.11.5 version to connect to cassadra instance in version 4.x .Is this compatable ? Also when I am using EmbeddedCassandraServiceHelper from cassandra-unit version 4.3.1.0 ...
Ankitha Mohan's user avatar
0 votes
2 answers
186 views

I'm learning about Java Threads and I've encountered two different ways to create a thread. I'm not sure about the technical differences between them: // Approach 1 Thread n = new Thread(new ...
happy's user avatar
  • 515
0 votes
0 answers
227 views

I am trying develop a Mule 4.x custom connector using JAVA Mule SDk. The connector for which I am trying is build is only supporting JAVA 11 at the moment .Thus when I am trying to build the it via ...
YADEVKRISHNA T R's user avatar
-4 votes
4 answers
141 views

Public class JavaRecursion { static void downloadStatus(int percentage) { System.out.println("download is at " + percentage + "%\n"): downloadIncrease(); } ...
DeveloperForce's user avatar
0 votes
0 answers
121 views

I am upgrading a project from Java 8 to Java 11 (yes, I know there's more recent). One web app uses JideSoft, and we upgraded this from 3.5 to 3.7.15. For legacy reasons, the web app does not use ...
Codes with Hammer's user avatar
1 vote
0 answers
47 views

I am trying to migrate my Java Spring MVC code from Java 1.8 to Java 11 runtime version. This code we deployed in Google AppEngine Flex environment and I need to upgrade the runtime due to recent ...
lourdu rajan's user avatar
-1 votes
1 answer
6k views

I am getting the following error upon building my project in Java 11: [INFO] Created EpisodePath [XXXX/src/main/java/META-INF/JAXB]: true [INFO] Ignored given or default xjbSources [XXXX/src/main/xjb],...
Bob's user avatar
  • 86
0 votes
1 answer
375 views

I am using the following yaml for an Azure pipeline, but getting an error. Even though that image has Java 11 installed. Any idea what I am doing wrong? Error: ##[error]Java 11 is not preinstalled ...
theDoke's user avatar
  • 575
1 vote
0 answers
30 views

I have this property in a class: private final List<KafkaInterface<EventWhateverDTO>> producers; Code of interface: public interface KafkaInterface<T> { void produceEvent(Map<...
joseluisbz's user avatar
  • 1,696
0 votes
1 answer
156 views

I have a very simple pure Spring web application with a login page (and it shouldn't use SpringBoot). I would like to authenticate the user and after that the user could go forward to its appropriate ...
DoWhileFor's user avatar
0 votes
0 answers
79 views

I created a pure Spring web application for learning purposes. It uses a simple database, where there are two roles: "Admin" and "User". It has a /login part where I can log in. ...
DoWhileFor's user avatar
1 vote
1 answer
119 views

I'm trying to understand two constructors with some initialization like CardboardContainer<String> n1 = new CardboardContainer<String>("Hello"); // In T constructor ...
summerisbetterthanwinter's user avatar

1
2 3 4 5
64