Skip to content

Prevent JavaFX dialog from closing

I’m currently creating a dialog using JavaFX. The Dialog it self works very well but now I’m trying to add an input validation which warns the user when he forgets to fill out a text field. And here comes my question: Is it possible to prevent the dialog from closing inside the Result Converter? L…

SLF4J logging with jboss/wildfly 10

I have a Java webapp running in a WildFly 10 server. I used to have the following libraries as Maven dependencies: I would now like to use wildfly’s builtin logging subsystem. Which libraries do I need to add to my project(s)? How do I configure the default log-category and root logger declared in stand…

Enable HTTP2 with Tomcat in Spring Boot

Tomcat 8.5, which will be the default in Spring Boot 1.4, supports HTTP/2. How can HTTP/2 be enabled in a Spring Boot application? Answer The most elegant and best-performing way to enable HTTP/2 with a Spring Boot application follows here. First, as mentioned in Andy Wilkinson’s answer, you need to ena…