In this tutorial we will learn how to find the SOAP Web Service WSDL URL, so that you can quickly test your SOAP Web Service.
F.Marchioni
How to solve java.lang.OutOfMemoryError: unable to create new native thread
In Java you can stumble upon two kinds of Out of Memory errors: The java.lang.OutOfMemoryError Java heap space error : the application tried to allocate more data into the heap space area, but there is not enough room for it. Although there might be plenty of memory available on your machine, you have hit the … Read more
How to configure SSL/HTTPS on WildFly
Securing your applications with SSL/HTTPS in WildFly or JBoss EAP is essential for protecting sensitive data and ensuring compliance with modern security standards. In this updated guide, you will learn how to configure HTTPS on WildFly in 2025, using secure TLS protocols and managing certificates with modern tools.
How to configure SLF4J in WildFly applications
In this tutorial, we will discuss how to use Simple Logging Facade for Java (SLF4J) with Wildfly application server. SLF4J is a logging facade that provides a unified interface for various logging frameworks, such as log4j, java.util.logging, and Logback. It allows for the decoupling of the application code from the underlying logging framework, making it easier to change the logging framework without modifying the application code.
Getting Started with Simple Logging Facade (SLF4J)
Simple Logging Facade for Java (SLF4J) is a logging facade that provides a unified interface for various logging frameworks, such as log4j, java.util.logging, and Logback. It allows for the decoupling of the application code from the underlying logging framework, making it easier to change the logging framework without modifying the application code. Here is a small tutorial to discuss the advantages of using SLF4J versus direct logging configuration.
Configure Hibernate Connection Pool
This article discusses how to configure a JDBC Connection Pool in Hibernate applications covering both Hibernate managed applications and Hibernate Native applications.
Maven and JBoss a concrete example
In this tutorial, we will guide you through the process of integrating Maven, a powerful build automation tool, with WildFly, a robust and popular Java application server. By leveraging Maven’s dependency management and build capabilities, along with WildFly’s efficient deployment mechanism, you can streamline your development workflow and ensure smooth application deployment. Follow this comprehensive … Read more
How to solve ViewExpiredException: View could not be restored
The javax.faces.application.ViewExpiredException is a common exception in JavaServer Faces (JSF) applications that occurs when the user’s view state, which is used to maintain the state of components across requests, becomes invalid or expired. This typically happens when a user submits a form or performs an action on a JSF page after the view state has expired on the server.
Mastertheboss privacy policy note
Within the entire mastertheboss organization and while accessing the website www.mastertheboss.com (the “Controller”), your privacy is one of our fundamental commitments, and therefore, we take utmost care to process your personal data in accordance with the principles set forth in the applicable legislation, including without limitation the General Data Protection Regulation no. 679/2016 (“GDPR”). The … Read more
How to Cache the Response with RestEasy
Resteasy is a popular Java framework for building RESTful web services. One of its features is the ability to cache HTTP responses using the @Cache and @NoCache annotations.