Most voted "java-11" questions
Use this tag to ask specifically about version 11 of Java. Always remember to also use the Java tag.
Learn more…11 questions
Sort by count of
-
2
votes1
answer3802
viewsError trying to use Javafx 11 with Netbeans 9.0
I’m trying to update my version of Java to 11, but I cannot make it work on IDE. This error appears when trying to create a new project. I know that the JavaFX was taken from JDK from version 11,…
-
1
votes1
answer76
viewsHow to change the structure of a static method at runtime?
I am building a Java application that consumes a REST Web Service. I sought to use the new Httpclient of Java 11. However, the same request in this target application sometimes gets a post,…
-
1
votes1
answer104
viewsgetClass(). getResource() returns null
The following code normally functions: package com.lucasdaniel; package com.lucasdaniel; import java.net.URL; public class Main { public static void main(String[] args) { new Subclass(); } static…
-
0
votes0
answers161
viewsNETBEANS 10 when I create a javafx Fxmlapplication project
I am using DEBIAN 9 *https://openjfx.io/openjfx-docs/#install-javafx // I walked in here and nothing because it has to do always I’m with Netbeans 10 , when I create a javafx Fxmlapplication project…
-
0
votes1
answer40
viewsError creating table Hibernate add ('type=Myisam') mysql
Hello, I am studying about Java web using Spring boot and Hibernate. but during an event project Hibernate is dropping an exception when running the server. if you need more information just ask.…
-
0
votes1
answer25
viewsMy case 3 does not delete from the list and case 4 does not compare and returns the amount of gender written
I register some books, after that I try to delete some with my case 3, but typing case 2 to show all it continues showing the book that should have been deleted. My case 4 should compare the typed…
-
0
votes0
answers33
viewsProblems migrating Java 11 with CXF
I am migrating my application that is on Java 8 and CXF 2.7.10. I upgraded the Java version to 11 and CXF to the latest version. However, when generating WSDL the results are different. Another…
-
0
votes1
answer283
viewsJsonformat with Localdatetime springboot
Hello, I am trying to record in the bank only the time of the attribute of my Entity, I put @Jsonformat(Pattern = "HH:mm:ss") but the error when it will record Resolved…
-
0
votes1
answer39
viewsHow to load an external . jar in Java 11
It is possible to load a .jar external in the Classloader of Java 11? I can do this in version 8 of Java, but from 9 the method for this ends up being broken (because it is considered a security…
-
0
votes1
answer18
viewsShow a column with String in table view where the field of the model class is Boolean - javafx
Good afternoon, you guys! I am studying javafx and I am creating a simple application, I was doing well until I came across the following problem: I have a model class 'User' that may or may not…
-
-1
votes0
answers6
viewsHow to map a list of objects in a list of primitives using Modelmapper
I have the following class in java: @Entity @Table(name = "tbcs_localatendimento", schema = "cats") public class LocalAtendimento { ... @NotNull @ManyToMany(fetch = FetchType.LAZY) @JoinTable(name =…