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
10
votes
2 answers

How do I shutdown JBoss Wildfly when I can't access the CLI tool?

I"m using Wildfly 10.0.0.CR2 with Java 8. I have Wildfly listening for http connections on port 8080 and in the past have used this command to shut down the server ... ./jboss-cli.sh --connect command=:shutdown HOwever, occassionally, I'm not able…
Dave
  • 15,639
  • 133
  • 442
  • 830
10
votes
2 answers

How to change Wildfly server's IP address

I'm working on preparing a program that runs on Wildfly for deployment to a customer site, and I need to change the IP address that Wildfly launches on. How do I configure Wildfly to start up at, for example, 127.0.0.2 instead of…
jpyams
  • 4,030
  • 9
  • 41
  • 66
10
votes
2 answers

Use CXF libraries in Wildfly deployment with Maven artifact provided

Im trying to deploy a project containing an JAX-WS Interface to a wildfly 8.2 server. The project is packed as a war. Within that project I would like to use interceptors. import…
mr-anderson
  • 161
  • 1
  • 1
  • 9
10
votes
1 answer

Database connections not closed after idle-timeout in wildfly Datasource

I have an application running under wildfly 8.1 The database connections used in the applications are taken from a Datasource defined in standalone.xml file. Problem: I don't know why but the Connection from the Pool never goes Idle and are…
Salman A. Kagzi
  • 3,833
  • 13
  • 45
  • 64
10
votes
2 answers

Keeping HTTP session between redeploys in WildFly

Is possible to keep HTTP session between redeploys on WildFly?
cassiomolin
  • 124,154
  • 35
  • 280
  • 359
10
votes
2 answers

JPA 2.1 Entity Graph returns duplicated results

I started using the new entity graph feature in JPA 2.1 to specify the Lazy collections that must be loaded. Consider following classes: @Entity @NamedQueries({ @NamedQuery(name="findWithFilterAttr","select a from A a where a.filterAttribute…
cristhiank
  • 766
  • 8
  • 15
10
votes
2 answers

Maven can't deploy from parent pom

i have just started building applications with Maven. One of my approaches is to build a multimodule web application. Working with Eclipse makes it very easy to build that kind of an application. So far everything works fine. The point at which i…
claim
  • 506
  • 6
  • 13
10
votes
1 answer

Wildfly Datasource conflicting with DefaultDS

I migrate from jboss 7.1 to wildfly and i have some problems with my datasource. 10:04:37,900 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 49) JBAS017502: Undertow 1.0.0.Final starting 10:04:37,901 INFO …
mkuff
  • 1,620
  • 6
  • 27
  • 39
10
votes
3 answers

What is the alternative to OSGI for inter-module service injection in Wildfly?

We are in the process of disentangling a classic legacy monolithic EAR-packaged Java EE application. Our (most complex) component wiring pattern is as follows: component A 'requires' interface X, whilst components B and C (... N) each 'provide'…
Ampie Barnard
  • 678
  • 4
  • 11
9
votes
2 answers

Is WildFly affected by the log4j 2 vulnerability CVE-2021-44228?

We are using wildfly 10 and 16 in production and a zero-day exploit exists CVE-2021-44228 for log4j for some versions. How can I be sure that none of the code and libraries use a log4j lib that has that issue? I do not use any log4j property file…
Manuel
  • 321
  • 4
  • 13
9
votes
2 answers

Wildfly + Eclipse Deployment Scanners

I'm completely new to working with servers in general and I am trying to set up some software for a class that is starting next week. I keep running into this problem while trying to get Wildfly to work through Eclipse. I go to run the server and…
9
votes
0 answers

Widlfy 22 WELD Warnings with Form Based Programmatically Login

I have a web application currently deployed on Wildfly 22, using JSF 2.3 and OpenJDK 11. I'm currently migrating the login page from j_security_check to a programmatically login, following BalusC example on this post: Performing user authentication…
areal
  • 157
  • 5
9
votes
4 answers

Wildfly in Docker container not starting

I'm trying to access the welcome page of Wildfly running on a Docker container in Windows 10 Pro. This is what I did: Pulled the image: docker pull jboss/wildfly Run Wildfly container (this works fine, in the Wildfly log I can see it started…
ps0604
  • 1,227
  • 23
  • 133
  • 330
9
votes
3 answers

Load entire tables including relationships into memory with JPA

I have to process a huge amount of data distributed over 20 tables (~5 million records in summary) and I need to efficently load them. I'm using Wildfly 14 and JPA/Hibernate. Since in the end, every single record will be used by the business logic…
Meini
  • 77
  • 3
  • 19
9
votes
1 answer

org.h2.jdbc.JdbcSQLException: Schema "DBO" not found

This is a follow up question of Hibernate version mismatch in WildFly 10.0. For completeness, restating the problem briefly. I have 2 projects, one is a normal java project (with maven): core, and the other is non-maven dynamic web project: webapi.…
Sayan Pal
  • 4,768
  • 5
  • 43
  • 82