124,548 questions
0
votes
0
answers
65
views
Eclipse Can't find a JDK/JRE [Exit Code 1] [Windows 11]
I'm just attempting to work with Java for the first time, using Eclipse. Every time I try to open Eclipse however, I'm met with an error exit code.
Initially it was 13 , and I followed the steps on ...
-2
votes
0
answers
68
views
Debug perspective in Eclipse (variables not changing in variables view)
I'm learning to use debugging perspective in Eclipse, and I'm using this code to see how variables change
int test =1;
test =2;
test=3;
int max;
max=10;
for(int var =0 ;var < max; ++var){
std::...
-1
votes
1
answer
98
views
Eclipse double quote auto completion breaks standard key sequence
In recent version of Eclipse IDE for Java EE Developers, MacOS introduced new "improvement":
Type first double quote (dq), second dq, press left arrow.
Expected result:
I have 2 double ...
0
votes
1
answer
99
views
cross compile aarch64 cannot locate libgpiod in sysroot [closed]
I am cross compiling using Eclipse on amd64 Ubuntu 20.04 Host with target rpi4 aarch64 running Debian12 (bookworm)
I am using cross-compiler from sourceforge: cross-gcc-12.2.0-pi_64.tar.gz
For sysroot ...
Tooling
0
votes
2
replies
65
views
Where can I install Eclipse Kotlin Plugin 0.7.x version?
I need to use an older version of Eclipse - Neon or Photon - so i needed to use older version of the Kotlin plugin. However even if I try to use Install New Software there is no public URL for Kotlin ...
Advice
0
votes
7
replies
215
views
I'm starting to learn Java. What is the actual way of saving information of my classes, when I only run the program in the Eclipse IDE?
Sorry for the question, I'm sure it's kind of dumb, but I am really new to this world. So I'm learning Java and I use Eclipse.
I've learned the most basic things, like classes, arrays, lists, and I'm ...
Best practices
0
votes
1
replies
80
views
Is there a feature in intellij java IDE to index all classes on build class path like the eclipse default indexer?
I am looking for a "missing" feature in intellij that exist in eclipse, which is a native feature of automatically loading the the full content of the classpath and index it so it can be ...
1
vote
1
answer
156
views
Latest Eclipse shows compilation error in correct Java code
With the code below, the Eclipse Java compiler reports an error on line 12, which make use of the Clazz.this.field; field.
The error is: "The blank final field field may not have been initialized&...
Advice
1
vote
7
replies
158
views
Hashlife: what kind of fresh hell am I getting into?
As the title suggests, I'm trying to tackle Hashlife.
Am I jumping in blind? No, well, not entirely.
First thing, I've studied this article concerning GoL:
https://medium.com/@d.dadiani343/how-to-...
Advice
0
votes
1
replies
24
views
How to get metamodel registered packages from eclipse
I wanted to get the .ecore metamodel from the uri registered packages for my ATL project http://www.omg.org/spec/BPMN/20100524/MODEL, I tried by creating new .ecore model file and load resource for ...
Advice
0
votes
3
replies
78
views
Looking for mobile app design platform like old school Visual Studio 2010
About a decade ago I used and became proficient in using Visual Studio 2010 for development of large Windows Forms Applications. I recently was asked to develop a small smartphone app and am looking ...
0
votes
2
answers
88
views
How do I run a Webapp and WebService in Eclipse? (Gradle, Spring Boot, Wicket)
I've got a gradle project wrapper containing Database, API, WebService and WebApp projects. I can run Webservice and WebApp from gradle using gradle8 :WebApp:bootRunor gradle8 :WebService:bootRun. But ...
3
votes
0
answers
61
views
How do I automatically resolve transitive OSGi/Tycho plugin dependencies for an Eclipse RCP product instead of manually chasing diag errors?
I’m building an Eclipse RCP application using:
Eclipse Foundation Eclipse RCP (pure e4)
Tycho
p2 target platform
SimpleConfigurator (bundles.info based product)
Apache Felix Gogo console
I’m ...
2
votes
1
answer
127
views
Why do Quarkus tests fail in Eclipse after upgrade to new LTS version?
I recently upgraded our Quarkus from 3.20.2 to 3.27.1.
But now I noticed that while on the command line, all the projects are built flawlessly, tests don't run in Eclipse anymore.
Every time I start a ...
-5
votes
1
answer
193
views
How to Migrate from Java 8 32-bit to Java 17 32-bit? Eclipse Support Issues [closed]
I have been assigned a Java migration task. Currently, I am using Java 8 (32-bit), and now I need to migrate to Java 17 (32-bit). However, I noticed that there is no 32-bit version of Java 17 ...