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

How to do websockets in embedded undertow?

According to this: http://undertow.io/ it supports websockets. There is no documentation on how to do so, though. I just want a simple embedded undertow handling web sockets example. I don't want to grab the whole jboss app server.
mentics
  • 6,852
  • 5
  • 39
  • 93
8
votes
1 answer

Keycloak Custom SPI Deployment with external Jar

I have a SPI implementation which is: Custom SPI, directly implemented via SPI interface has an external jar which does not exist in JBoss base 1) EAR deployment: I tried EAR deployment and deploy my .ear to /standalone/deployments. This solves…
cmlonder
  • 2,370
  • 23
  • 35
8
votes
1 answer

Is there a way to differentiate in Oracle/JDBC between DATE and TIMESTAMP?

I have a Java application where the user builds their SQL select statement on the screen. Once they enter the select, I analyze with JDBC the column types. For Oracle, the JDBC equivalent of type DATE is java.sql.Types.Timestamp, as DATE includes…
ps0604
  • 1,227
  • 23
  • 133
  • 330
8
votes
2 answers

Why is the WildFly console log hijacking my WAR's log4j log?

I have 7 different WARs deployed to the same WildFly / JBoss server. Each WAR is identical in core design and Log4j configuration. Each WAR generates its own log file via its own individual custom log4j.xml. Each log is written to an individual…
JoshDM
  • 4,939
  • 7
  • 43
  • 72
8
votes
1 answer

How to use JPA - EntityGraph to load only a subset of entity @Basic attributes?

I found this documentation about entity-graphs... after read it, it gave me the idea that you can used entity-graphs to retrieve only a subset of @Basic fields of a given entity (Until now, I have used entity-graphs to retrieve relationships…
Carlitos Way
  • 3,279
  • 20
  • 30
8
votes
1 answer

Configuring Hibernate Search with Infinispan and Wildfly

I'm configuring Hibernate Search 5.5.5 to use Infinispan 8.2.2 on Wildfly 10. I configured only the Infinispan module in Wildfly, not the Hibernate Search module. Inside the persistence.xml I put this configuration:
Davide Cerbo
  • 363
  • 3
  • 10
8
votes
1 answer

JNDI name format of JMS queue in wildfly10

Hi I am migrating to wildfly 10 from JBoss_6.1.0_final. In JBoss for Queue name the format is like and in MDB annotation is @ActivationConfigProperty(propertyName =…
Hitesh Ghuge
  • 793
  • 2
  • 10
  • 39
8
votes
1 answer

Dump leak connections in WildFly

I am trying to dump leaked connections managed by a MySQL Data Source in WildFly 10.1, but I am not able to find the leak file or the leak dump. Why is the leaks.txt file not being generated? And also, where should I look for the file? Procedure I…
Evandro Pomatti
  • 13,341
  • 16
  • 97
  • 165
8
votes
3 answers

Unable to install/run SQL Server driver in WildFly 10

I am running my application on a WildFly 10 server. I do not wish to place my connection details on my application src codes thus am trying to place it inside WildFly 10 server itself. However I am facing issues. Under…
shadow
  • 800
  • 2
  • 16
  • 33
8
votes
2 answers

Unable to define oracle datasource on Wildfly 10

I'm using wildfly-10.1.0.Final and I'm trying to add an oracle Datasource:
Ena Jovicic
  • 101
  • 1
  • 1
  • 5
8
votes
1 answer

Out of Memory: metaspace with wildfly and groovy/jasper

On our Wildfly 10 applicationserver we are using groovy for jasperreports and other similiar systems. After some time the jvm (java 8) gets an "Out of Memory: metaspace" error. The same issue happens on some older jboss 4 servers with permgen (java…
Hauke Kern
  • 91
  • 6
8
votes
1 answer

Where is the war file built in Intellij IDEA, located?

I'm using IntelliJ IDEA and I'm building and deploying the web-application project every time I'm running it. All of this happens magically within IntelliJ IDEA. However, now I'm supposed to manually deploy it on a test server's wildfly, so I need…
Steve Waters
  • 3,348
  • 9
  • 54
  • 94
8
votes
2 answers

Deploy Spring Boot to Wildfly 10

Has anyone try to deploy an springboot application to wildfly 10 succesfully? i have look for examples but i only found for wildfly 8.2 This is my application class: @SpringBootApplication @EnableEurekaServer @EnableDiscoveryClient public class…
alfespa17
  • 335
  • 1
  • 3
  • 12
8
votes
1 answer

Hibernate OGM Neo4j (5.0 ) Wildfly 10 Error. Provider org.hibernate.ogm.service.impl.OgmIntegrator not a subtype

I am getting this error while deployment of ear . org.jboss.msc.service.StartException in service jboss.persistenceunit."test.ear/server.war#graphdb": java.util.ServiceConfigurationError: org.hibernate.integrator.spi.Integrator: Provider…
Shettyh
  • 1,188
  • 14
  • 27
8
votes
5 answers

Hibernate 4 -> 5 migration: NamingStrategy changes, Tables not found

What i want to do I'm trying to migrate from WildFly 8.2.0 to WildFly 10.0.0 which means that i have (and want) to migrate from Hibernate 4.3 to Hibernate 5.0. Setup Java 8u40 Spring 4.1.9 SQL Server 2012 Wildfly 8.2.0 -> Wildfly 10.0.0 Hibernate…
Robert Niestroj
  • 15,299
  • 14
  • 76
  • 119