I’m trying to use the HotSwapAgent plugin in IntelliJ. So, I have set as “agent path” the path of hotswap-agent.jar (found in the Trava Open JDK folder) that I downloaded from here. But as you can see here, I get the following error: DCEVM installation not found for JDK specified for the current project. You should download and install it.
Tag: intellij-idea
java form does not display [closed]
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 3 months ago. Improve this question I am very new to java forms. Sorry about this easy question, I’ve searched too many forums but still couldn’t find the issue. I have
Trying to update a boolean from a class in another class D:
First of all, sorry for my english! I have a problem, I´m trying to make a simple java videogame, and I make booleans for the inputs. The inputs works well, but when I try to update the booleans in another class, it doesnt work. I put here the important classes I put all the classes in this drive. Classes I
Unable to launch a java/javaFX code after a clone on IntelliJ
It’s very complicated to explain so sorry if it’s not clear. Basically, I’m on a group project in javaFX, and every time I clone it, my PC doesn’t recognize either Java or JavaFX on THAT project exactly. All the others work fine. So I have to do a lot of manipulation each time for it to “work” (I explain below).
1.12.2 Forge and modern intelliJ IDEA not loading resources [closed]
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers. This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers. Closed 5 months ago. Improve this question
IntelliJ: Unresolved reference, but gradle build still succeeds
I have a Java library https://github.com/skycavemc/skycavelib which I want to use in a Kotlin project. This is the build.gradle where I have the library as dependency: I also made sure I have a file named local.properties in my project where I set gpr.user and gpr.key correctly. The authentication works and the library is downloaded and indexed. IntelliJ also shows the
Spring boot won’t connect to Postgres database
I am trying to learn Spring Boot with a tutorial. I have the code and the database, but I keep getting a Hibernate ERROR whenever I try to connect the two… This is the Error I get: I have the dependency set up in my pom.xml: The StudentService And the StudentController class application.properties: Unfortunately I have no idea what’s the
How To Use Response value In Another Method
I am working on restassured and here is my 2 methods. I want to use the albumId returned from the AlbumList method in the other method I know these are void and doesnt return anything but idk how to use it. Bye the these methods are in the same class. Thanks in advance } Answer The easiest way is to
RestAssured – TestNG “No tests found. Nothing was run”
I want to test my api’s use RestAssured with TestNG but i got some error’s.”No tests were [TestNG] No tests found. Nothing was run”. So here is my pom.xml file and testng.xml file. Pom.xml testng.xml testNG Configuration Part of my main class Thank you for your time Answer Ok i remove the psvm and i just use public void instead
Intellij – Spring Retry @Recover method marked as unused
When using Spring Retry @Recover method (which works ok) IntelliJ always marking method as unused and suggest to safe delete Method ‘recover(com.gth.common.exceptions.RetryableException, java.lang.String)’ is never used How can it be avoided? how can IntelliJ be aware of the recover method usage? I don’t want IntelliJ to stop warn about Unused declaration, only the false positive warnings Answer Method declarations looks