3,168 questions
0 votes
0 answers
72 views
How to config bootstrapClasspath in java 11 about android studio project?
Here is android studio project app module script file(build.gradle.kts) segment: android { .... compileOptions { sourceCompatibility = JavaVersion.VERSION_11 ...
0 votes
0 answers
46 views
Vaadin 23 (Spring non-boot) WAR deploy to Tomcat 9 returns 404 despite correct WAR structure
Title: Vaadin 23 WAR deploy to Tomcat 9 returns 404 despite correct WAR structure. I’m deploying a Vaadin 23, Java 11 WAR (non‑Spring Boot) to Tomcat 9 as ROOT.war. The WAR includes: flow-build-info....
0 votes
0 answers
30 views
OpenEJB (for Unit-Tests) not working after Upgrade from 7 to 8
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-...
0 votes
0 answers
68 views
SOAP service with CXF 4.0.6 and Java11 - Upgrade Failed
I have below build.gradle file in my application. And my application has already Generated Java classes with cxf 3.5.4 and application is running fine for more than a year. Now I need to upgrade the ...
0 votes
1 answer
600 views
Error E: Package 'openjdk-11-jdk-headless' has no installation candidate when trying to install eProsima FastDDS
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 ...
0 votes
2 answers
105 views
How to convert a image In Spring boot resource folder to Encoded character and then decode it
I am using the following code in a Spring Boot application to load an image from the resources folder, encode it to a Base64 string, and later decode it back into an image file. public String ...
2 votes
0 answers
67 views
Interceptor for {http://service.ws.um.carbon.wso2.org}RemoteUserStoreManagerService#{http://service.ws.um.carbon.wso2.org}isExistingUser errors
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: ...
0 votes
1 answer
160 views
Java does not allow using private final class member in lambda under certain pattern
A private lambda function is accessing a private final class member that is initialised in the class constructor. However, this code pattern compiles with error: variable num might not have been ...
2 votes
1 answer
191 views
How to Install Java 11 with IBM WebSphere Liberty
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....
1 vote
1 answer
78 views
Create dockerfile to use airflow and spark, pip backtracking runtime issue comes out
I'm tring to build dockerfile to use airflow and spark as follows FROM apache/airflow:2.7.0-python3.9 ENV AIRFLOW_HOME=/opt/airflow USER root # Update the package list, install required packages, ...
-1 votes
1 answer
78 views
How to solve JDK Gradle Config error in Flutter
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 ...
1 vote
0 answers
40 views
My android studio have problem with jdk version
I have installed jdk 17 when i added firebase and then run my app on mobile it gives error again and again that it can't execute the java home jdk 11 which i dont have o already added my environmental ...
0 votes
0 answers
75 views
configurable attribute "actual" in @google_protobuf3//:google-protos doesn't match this configuration
Facing below issue on bazel build on M1 Pro (MacOS - 13.6.5) bazel build :all --config=mac64 WARNING: Option '...
0 votes
1 answer
99 views
How to migrate com.octo.captcha jcaptcha from java 6 to java 11
I am migrating a project from Java 6 to Java 11. In the project I have the following dependency: <dependency> <groupId>com.octo.captcha</groupId> <artifactId>jcaptcha&...
0 votes
0 answers
71 views
the package org.w3c.dom is accessible from more than one module: <unnamed>, java.xml
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....