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

Cached connection manager in jboss/wildfly

I have defined a datasource for JBoss AS 7.4, with min/max pool sizes, tracing of idle connections etc. I am confused about the datasource use-ccm property. What does it do? Why use it? I thought the datasource itself manages the connection pool.
user1340582
  • 19,151
  • 35
  • 115
  • 171
14
votes
4 answers

Wildfly standalone in local network

I need some way to give access to my web application frontend (which is on localhost:8080 by default) to local network users (192.168.x.y). Assuming that my ip is 192.168.1.72, I want other client in my network could view my application frontend in…
Everv0id
  • 1,862
  • 3
  • 25
  • 47
14
votes
1 answer

Eclipse, Spring, Wildfly log4j logging

I am running Spring framework 3.2.2.RELEASE on WildFly 8.0. I am trying to get logging to work. I have tried reading several tutorials, but, can not seem to get any output to the console or log. I am looking at the console in Eclipse, and the log at…
Doo Dah
  • 3,979
  • 13
  • 55
  • 74
13
votes
1 answer

How to run Wildfly 14 with java 11?

I'm using Wildfly 14 and Java 11 in its runtime configuration. When I start the server I get org.jboss.modules.ModuleNotFoundException: java.se at org.jboss.modules.Module.addPaths(Module.java:1266) at…
Mark
  • 2,167
  • 4
  • 32
  • 64
13
votes
4 answers

Cannot connect to Wildfly

I have just installed Wildfly and I tried to connect it : \wildfly-11.0.0.Final\bin>jboss-cli.bat -c But gives me follow error : Failed to connect to the controller: The controller is not available at localhost:9990: java.net.ConnectException:…
Mihai Alexandru-Ionut
  • 47,092
  • 13
  • 101
  • 128
13
votes
2 answers

Why is persistence unit named null when persistence.xml exists

I am using Wildfly 8.1 together with a EJB Project (EJB 3.2) containing entities. When trying to inject the Entity Manager into one of my Beans i get the following: JBAS011440: Can't find a persistence unit named null in deployment…
Jbartmann
  • 1,459
  • 4
  • 24
  • 42
13
votes
4 answers

Setting up maximum of connections for web

In JBoss7 we've restricted number of web connections by using this for urn:jboss:domain:web:1.0 subsystem which is replaced by…
Pat
  • 391
  • 2
  • 3
  • 13
13
votes
3 answers

How to set up messaging subsystem using CLI in Wildfly

Does anyone have an example script for setting up the messaging subsystem in Wildfly using CLI? The perfect example would be the CLI needed to take a server running the standalone.xml, and after running the CLI script it has the messaging subsystem…
DJ Spiess
  • 983
  • 2
  • 9
  • 26
13
votes
1 answer

Difference betwen org.wildfly.bom and org.jboss.spec for Java EE7 with maven

I am working in a new project that is going to use Java EE 7 with WildFly, but I am still confused about which maven dependencies I should use. I have found these two groups that apparently I can use: org.wildfly.bom and org.jboss.spec They have the…
jonathan
  • 422
  • 4
  • 12
12
votes
4 answers

Springboot Wildfly 10 deployment error jdk.unsupported module not found

I have a Springboot v2 project with Java 1.8 and when I try to deploy my springboot project on Wildfly 10, I keep getting this error 19:12:25,295 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation…
Kikuich
  • 121
  • 1
  • 1
  • 4
12
votes
1 answer

Update to Spring 5.1 - java.lang.NoClassDefFoundError: org/springframework/http/server/reactive/ServletServerHttpResponse$ResponseBodyProcessor

I get the following stacktrace while deploying when trying to update to Spring 5.1 from 4.3. Server is WildFly 14. Runtime is JDK 11. Compiler target is 1.8. I tried cleaning dependecies, but nothing help. Further below is dependency:tree…
Robert Niestroj
  • 15,299
  • 14
  • 76
  • 119
12
votes
2 answers

Why is hibernate.connection.release_mode after_transaction not recommended for JTA?

While analyzing some performance problems in Wildfly 10.1 in high pressure scenarios I came to the conclusion, that sometimes parallel HTTP threads block each other. The reason seemed to be that in some HTTP requests we execute two JPQL Queries…
Martin Rauscher
  • 1,700
  • 1
  • 14
  • 20
12
votes
4 answers

Wildfly fails to deploy application (FileNotFoundException - Access is Denied)

Wildfly 8.2.0.Final JDK 8 Update 60 Eclipse Mars Update 1 JBoss Tools 4.3.0.Final Windows 10 Recently I upgraded the following things: from Windows 7 to Windows 10 from Eclipse Mars to Eclipse Mars Update 1 from JBoss Tools 4.3.0.Beta1 to JBoss…
Marcos
  • 1,237
  • 1
  • 15
  • 31
12
votes
5 answers

How to configure datasource in wildfly 10?

I am starting introduction with wildfly learning. I have downloaded distribution of server. Now I am trying to configure datasource but I see following error: Unexpected HTTP response: 500 Request { "address" => [ ("subsystem" =>…
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
12
votes
1 answer

How to inject EntityManager in CDI (weld)?

In my project , I use JSF+JPA+CDI+WildFly 8.2 in the persistence layer. I have a BasicDao , like this: public class BasicDao { private org.jboss.logging.Logger logger = org.jboss.logging.Logger .getLogger("BasicDao"); …
SuperChia
  • 131
  • 1
  • 1
  • 4