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
jboss web server
How to configure CORS on WildFly
If you are running your web applications on WildFly, you can configure CORS to allow cross-domain requests. In this article, we will go through the steps to configure CORS on WildFly.
How to set the SameSite attribute in Java Web applications
This short article describes how you can set the SameSite property in HTTP Cookies for Web applications, with special focus on WildFly‘s Web server, which is Undertow.
How to serve static content in WildFly applications?
This article presents different ways of including static content (such as image or css files) in Web applications running on top of WildFly application server.
Using the default Servlet in WildFly applications
This article will teach you how to use the default Servlet available in Undertow Web Server for some concerns, such as directory listing or static resources serving.
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.
How to configure Web applications request limits in WildFly
In this article you will learn which strategies you can adopt on WildFly application server to configure the maximum number of concurrent requests using either a programmatic approach (MicroProfile Fault Tolerance) or declarative one (Undertow configuration).
How to change WildFly default Welcome page
In this article we will learn how to replace (or disable) the default Welcome page for WildFly and JBoss EAP which is by default available at localhost:8080. WildFly users To configure an application as default Web app requires two simple steps. Firstly, in your undertow server remove the default welcome application from your host. You … Read more
How to run multiple HTTP Ports in JBoss / Wildfly
In this short tutorial we will learn a simple configuration skill to start multiple HTTP Ports on WildFly application server and how to restrict each port to a specific Web application deployed on it.
How to see JSP changes without redeployment
In this article we will learn how to see automatic changes in your Jakarta Server Pages without the need of redeploying your applications.