Securing the webtraffic or connection to the servers is of paramount interest for any one who wants to prevent any kind of malicious attacks on their servers. One of the most popular ways to secure the web traffic is to use https. In order to enable https, we have to buy a SSL digital certificate […]
How to Deploy Exploded WAR file in JBoss EAP Server
In the realm of Java EE application servers, JBoss EAP (Enterprise Application Platform) stands as a market leader. Whether you’re optimizing for development or production, understanding how to deploy applications is crucial. Among deployment formats, an ‘exploded’ WAR (Web Application Archive) file offers some advantages like hot deployment and easier debugging. In this guide, we’ll […]
HTTP Redirection Configuration in JBoss
In our previous article we have explained how to configure Wildcard SSL Certificate in JBoss application server. As the next step, you will have to configure HTTP redirection so as to redirect all the incoming HTTP request’s to HTTPS to make sure your Java app is completely secured. In this article we will give you […]
How to Use JPA 2.1 in JBoss EAP 6.x
JBoss EAP 6.x is based on JEE 6. But as JPA 2.1 is part of the JEE 7 Spec, it will not be possible to directly deploy applications built using JPA 2.1 in JBoss EAP 6.x. However, with the following workaround we can make this possible. You need to include a ‘jboss-deployment-structure.xml’ with the following […]