How to enable access logs in WildFly / JBoss

In the context of Web servers, Access Logs refer to the records or files that store a detailed history of all requests made to the Web server. WildFly uses Undertow as Web Server therefore in this tutorial we will learn how to enable tracing Access Logs to monitor incoming HTTP Requests

Read more

How to solve FileNotFoundException: Invalid file path

This article discusses how to solve the JDK issue, which happens on WildFly on Windows, on certain JDK version, an results in the error “java.io.FileNotFoundException: Invalid file path“. The Issue As discussed in this JDK Bug , with java update cpuapr2022 (8u331 11.0.15 and 18.0.1), the Web Server undertow is broken for windows. When using … Read more

How to configure a custom Undertow Thread Pool

WildFly uses Undertow as Web server. In order to configure the amount of threads available in a Web application, we can define a Worker Thread from the io subsystem and use the Worker Thread for its HTTP listeners or just for single applications. In this tutorial we will learn how to do it.

Read more