Eclipse IDE for Java EE Developers - Tools for Java developers creating Java EE and Web applications, including a Java IDE, tools for Java EE, JPA, JSF, Mylyn, EGit and others.
Questions tagged [eclipse-jee]
84 questions
6
votes
4 answers
Spring Cloud Gateway doesn't work with DiscoveryClientRouteDefinitionLocator
I was working with Spring cloud gateway when i use routes statique like this (It works fine) :
@Bean
RouteLocator routeLocator(RouteLocatorBuilder builder) {
return builder.routes()
.route((r) ->…

Ayoub Jebji
- 249
- 1
- 3
- 12
5
votes
1 answer
On Eclipse-Java EE, how do I change the color settings for selected elements on a tree view?
I've recently switched to the dark theme on Eclipse Java EE Luna, even tried other dark themes such as moonrise, but I always end up having to tune some settings in order to be able to read things (which by the way I have to set up again every time…

NotGaeL
- 8,344
- 5
- 40
- 70
4
votes
2 answers
How to create a file with content and download it with THYMELEAF
I'm working on a spring boot project with thymeleaf and I need to create a file and put some lines on it then send it for the user to download it.
@PostMapping("/filegenerator")
public String createFile(@ModelAttribute("page") Page page, Model…

Sarah Abouyassine
- 169
- 1
- 2
- 13
3
votes
0 answers
Maven Configuration Probleme with ECLIPSE Kepler
I tried to follow a tutorial but, I got an error with maven right from the first step.
Failure to transfer org.codehaus.plexus:plexus-archiver:pom:1.2 from http://repo.maven.apache.org/maven2 was cached in the local repository, …

user3773380
- 145
- 1
- 2
- 12
2
votes
4 answers
Server Tomcat v8.5 Server at localhost failed to start when I try to debug Eclipse JEE web project on local tomcat 8.5
I have found other stackoverflow questions similar to this one. The answers seem to be particular to those people's errors, so I gave up on them.
I did not have this error when I left off on this project as I recall. I don't recall changing anything…

daniel
- 1,446
- 3
- 29
- 65
2
votes
4 answers
SocketTimeoutException : null while opening New Spring Starter Project
SocketTimeoutException : null while opening New Spring Starter Project
JAVA_HOME=C:\Program Files (x86)\Java\jdk1.7.0_40
Path=%JAVA_HOME%\bin;C:\..

amine
- 35
- 1
- 5
1
vote
0 answers
I have a problem to get a parameter from an html page to a servlet using Dispatcher.include()
I have this servlet code for profile:
@WebServlet("/Profile")
public class Profile extends HttpServlet {
private static final long serialVersionUID = 1L;
public Profile() {
super();
// TODO Auto-generated constructor…

elmrabti
- 11
- 2
1
vote
2 answers
Internal compiler error: java.lang.NullPointerException at org.eclipse.jdt.internal.compiler.problem.ProblemHandler.handle(ProblemHandler.java:148)
I just imported a Java EE project that I made about a year ago. But after I imported it, i get this error in the first line of one of the files:
Internal compiler error: java.lang.NullPointerException at…

AidenFive
- 29
- 1
- 7
1
vote
1 answer
How to change Eclipse IDE Title Bar
How can I change the font size and style of red underlined 1 and 2 of Eclipse IDE in the image given below?

skip
- 12,193
- 32
- 113
- 153
1
vote
1 answer
file level problem persistence.xml and applicationContext.xml and pom.xml
hello i'm working on a jee application with the spring framework
I installed IDE Spring tools 3.8 and tomcat 9 and java 8 and I installed maven 2
I created the persistence.xml and applicationContext.xml files I have no error message but during the…

castigador54
- 11
- 2
1
vote
1 answer
Build-time validation of web sockets ClientEndpoint in Quarkus
I use Java WebSocket API to declare client (Java class annotated by @ClientEndpoint):
@ClientEndpoint
public class MySock {
MySock(ExecutorService exec){}
...
}
Instance is created via constructor:
webSocket = new MySock(exec);
session =…

Leonid Gorshkov
- 61
- 3
1
vote
2 answers
Optional class in spring boot?
I'm developing an application that manages accounts. I made a Package named org.sid.entities where exists the IBanqueJob interface and below its code
package org.sid.metier;
import org.sid.entities.Compte;
import org.sid.entities.Operation;
import…

marouu
- 17
- 5
1
vote
0 answers
How can access EJB from a remote client?
This is the scenario:
I created an EJB project in eclipse on wildfly as a server. The EJB project
It has been deployed with its beans, and is ready in the wildfly administrative console.
Now I need to create a remote client to use the EJB project…

Gabriel Solitario
- 11
- 1
1
vote
2 answers
How to call a JavaScript function with onchange Event if my input value changed by Java Method
I am getting a value in my input this way:
How can I call the JavaScript function if a value changed.
function…

java programming
- 125
- 2
- 11
1
vote
1 answer
Hide checkbox in java with Scenebuilder
I am working with eclipse jee photon and scenebuilder.
What I am trying to do:
I have a choicebox with two labels:
ObservableList labelList = FXCollections.observableArrayList("examlpe01", "example02");
If example01 is chosen, the checkbox should…

roxena
- 179
- 1
- 10