Questions tagged [wildfly]

WildFly, formerly known as JBoss Application Server, is an open source (LGPL) application server that implements the latest enterprise Java standards.

WildFly is written in Java and as such is usable on any operating system that supports Java.

WildFly was originally developed by JBoss Inc. which was acquired by Red Hat in 2006. It is licensed under the terms of the GNU Lesser General Public License. WildFly is free and open source software.

The renaming to WildFly was done to reduce confusion. The renaming only affects the JBoss Application Server project. The JBoss Community or the Red Hat JBoss product line (with JBoss Enterprise Application Platform) all retain their names. See also the tag.

For further information, visit the WildFly website.

6512 questions
2
votes
2 answers

Not able to open JBoss "Welcome Page" and Console

I have been working on IBM WebSphere Application Server, and wanted to learn JBoss. I have installed JBoss properly, but not able to open the “Welcome Page” & Console. Need you help here. Actually I connect to a server – let say, ABC from my…
user3772505
  • 75
  • 1
  • 9
2
votes
1 answer

can't get swagger working (wildfly 9)

I found swagger and swagger-ui and I like the approach. I already managed to get it working at least on Spring boot. Now I would like to integrate swagger in a Java EE application running on wildfly 9. Unfortunately this doesn't work at all. Swagger…
peez80
  • 1,583
  • 2
  • 15
  • 32
2
votes
1 answer

Deploying Apache Isis on WildFly

I'm trying to deploy an Apache Isis project on a WildFly server. The project is just the simpleapp-archetype-1.10.0 and it starts and works well with mvn antrun:run -P self-host and mvn jetty:run-war. For the jetty part, I added configuration to the…
goggelz
  • 93
  • 1
  • 6
2
votes
1 answer

Java profiling with mission control - Where I can see the spend time of my own methods?

I have a webApp with wildfly, jpa, ejb and jsf. Now I want to know how much time my methods takes? So I started mission control and started the flight Recorder. In the Report of the Flight Recorder I can see the hot methods and an overview of…
java java
  • 405
  • 1
  • 11
  • 25
2
votes
1 answer

Clustered database timers in WildFly

Applying the following configuration in standalone-full-ha.xml.
Tiny
  • 27,221
  • 105
  • 339
  • 599
2
votes
1 answer

Failed to load module for driver org.postgresq

I want to use postgresql in Jboss Wildfly Swarm via declaration of datasource. The application startup error message is: Failed to load module for driver org.postgresq Content of the main class: public static void main(String[] args) throws…
john miran
  • 393
  • 2
  • 13
2
votes
1 answer

How to run appclient inside a deployed ear on wildfly?

I have an EAR-File containing an EJB-module, a WAR-module and two appclient-modules. I deployed the EAR using maven, so the EAR-File is not placed in the standalone/deployments-directory. Connecting with jboss-cli.sh, I can see the deployment. The…
dide
  • 73
  • 6
2
votes
2 answers

How to make MDB Activation Spec contextual properties configurable?

In our project, we are are using an MDB that listens for a message on a specific queue. It is defined as an annotation. Example: @MessageDriven(activationConfig = { @ActivationConfigProperty(propertyName = "maxSessions", propertyValue = "20")}) .…
Sumanth
  • 595
  • 3
  • 14
  • 39
2
votes
2 answers

How to display JSP with WildFly

When I was using JBoss 7.1.1 I could display a JSP page doing something like that : @WebServlet("/path") public class Controller extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws…
cheb1k4
  • 2,316
  • 7
  • 26
  • 39
2
votes
1 answer

Strange lambda error on spring bean creation

First of my apologies, since i don't know where to raise this issue, Wildfly, Spring, JDK or ? I have some spring bean initializing via spring java config as follows using some lambda expression, @Bean @DependsOn("dataSource") public Flyway…
Sreekanth
  • 539
  • 1
  • 7
  • 24
2
votes
0 answers

WildFly 8.1 do not accept datasource configured at web.xml

I have a JAVA EE 7 project that use WildFly 9.0.2 Final release as an application server and I had configured the datasource using the tag at web.xml it works fine, but when I use WildFly 8.1 it does not work anymore. the relevant part of the…
danillosl
  • 519
  • 3
  • 7
  • 13
2
votes
0 answers

How to properly start Wildfly from Gradle

My goal is to develop a Gradle script that starts my Wildfly before the tests start running, and stop it after the tests complete, this way, Selenium tests can run. To achieve this goal, I've decided to do the following at my build.gradle: Before…
Bruno Gasparotto
  • 671
  • 12
  • 31
2
votes
1 answer

Cannot shutdown WildFly 9.0.2.Final on Windows 10

I have a WildFly 9.0.2.Final server running on windows 10. When I try shutdown the server using command: jboss-cli.bat --connect command=:shutdown I see the following log: Failed to connect to the controller: The controller is not available at…
Alex
  • 71
  • 1
  • 6
2
votes
0 answers

Session Failover in JBoss/WildFly

Setup: Two Linux machines Start Server in standalone mode configuration used is standalone-full-ha.xml cluster-demo.war deployed to both nodes with tag Cluster successfully formed between the two nodes. I can see the jgroups messages and having…
Basit Anwer
  • 6,742
  • 7
  • 45
  • 88
2
votes
2 answers

JSR 352: Wildfly9 / JBeret - How to call a batch job that it is not contained at the same deployment file level

I have a WAR application that includes a JAR library. The JAR library contains the Batch Job and the Batch Artifacts (META-INF/batch-jobs/...). The WAR app includes this jar as a library and defines a JAX-RS Service that allows to clients to invoke…
Carlitos Way
  • 3,279
  • 20
  • 30