Questions tagged [wildfly-8]

WildFly 8 is a release in a series of JBoss open-source application server offerings and an implementation of the Java Enterprise Edition 7 Platform specifications.

About

WildFly 8 was the first release of JBoss open-source application server offerings to bear the brand "WildFly". WildFly 8 is designed to be an exceptionally fast, lightweight and powerful implementation of the Java Enterprise Edition 7 Platform specifications. The state-of-the-art architecture built on the Modular Service Container enables services on-demand when your application requires them.

Links

1036 questions
0
votes
1 answer

Spring boot deploy on wildfly many logs when start application

When i just deploy my application on wildfly 8.2 everything is ok but there is many logs and application starts very slowly. this is my spring boot pom configuration :
Łukasz Woźniczka
  • 1,625
  • 3
  • 28
  • 51
0
votes
1 answer

EJB 3.1 timer executes on startup even if the scheduled time is different

I have created a scheduler using EJB 3.1 timee and schedulerd to execute at 22:30pm on week days. The annotation is given below: @Schedule(minute="30", hour="22", dayOfWeek="5–1") But I found that this scheduler executed immediately after starting…
Valsaraj Viswanathan
  • 1,473
  • 5
  • 28
  • 51
0
votes
1 answer

EJB - EJBTransactionRolledbackException argument type mismatch - overloaded method

I really need some help! By invoking an EJB that has method overloading, I'm having the following exception: javax.ejb.EJBTransactionRolledbackException: argument type mismatch Interestingly, this happens randomly and only in this overloaded method.…
0
votes
2 answers

How to use AOP in WildFly 8.2

I would like to log the execution time for some methods in my controllers. Right now I am just trying to figure out so I don't log but print, and it's for all methods. I have a Profiler class: @Aspect public class Profiler { …
Maxime Laval
  • 4,068
  • 8
  • 40
  • 60
0
votes
0 answers

Setting java.io.tmpdir in Wildfly 8.2

I am attempting to set the location of the system property java.io.tmpdir to something other than the default "/tmp" in my standalone.xml file. I have added the following element after the element:
El Guapo
  • 5,581
  • 7
  • 54
  • 82
0
votes
3 answers

Wildfly 8.2 fails scanning entities inside WEB-INF/lib/*.jar directory. Is this the expected behavior?

I was deploying a war that contained the entities inside the WEB-INF/classes directory, but now I moved those entities to a separate proyect/module and now the entities reside inside WEB-INF/lib/*.jar After the change wildfly failed to scan the…
David Hofmann
  • 5,683
  • 12
  • 50
  • 78
0
votes
1 answer

Failed to define class org.hibernate.cfg.EJB3DTDEntityResolver

i have a problem with hibernate and wildfly. When i run the program in standalone there is no any problem and i can access my DB. But when i deploy the project and try to access the DB , i have this issue : 11:40:38,700 INFO …
jean-philippe
  • 23
  • 1
  • 5
0
votes
1 answer

What is the equivalent implementation of service POJOs (jBoss services in jboss 6 AS) of EJB 3.0 in EJB - 3.2

Service POJOs are available which is used to define as jBoss services (in Jboss AS 6) in EJB 3.0 and the tutorial is http://docs.jboss.org/ejb3/app-server/tutorial/service/service.html and below are the related annotations. import…
sridhar
  • 1,117
  • 5
  • 31
  • 59
0
votes
1 answer

@LocalBinding(jndiBinding="sample/student") of EJB 3.0 not present in EJB 3.2

@LocalBinding(jndiBinding="sample/student") in EJB 3.0 is used to give preferred JNDI name to EJB bean. And to lookup using defined JNDI name, the code used is Context c = new InitialContext(); studentBean = (studentlBean)…
sridhar
  • 1,117
  • 5
  • 31
  • 59
0
votes
1 answer

Dependency error when deploying java project to Wildfly 8.2

I'm having a problem deploying my java project with Wildfly 8.2 in eclipse EE. There seems to be some problems with the datasource but I can't seem to figure out where and why. When I test the connection in the Console Manager in Wildfly it connects…
Ohlafl
  • 41
  • 2
  • 11
0
votes
1 answer

How to deploy EJB 3.0 application in Wildfly 8 application server

I am migrating EJB 3.0 application from jboss AS 6 to wildfly AS 8. Is it possible to deploy EJB 3.0 application to wildfly as ease in wildfly? After updating the EJB spec as per wildfly EJB modules in pom.xml, I am getting compilation error that…
sridhar
  • 1,117
  • 5
  • 31
  • 59
0
votes
0 answers

java - Maven dependency to another module

I have following problem: I only need a dependency to ear2-ejb module. What I have to do to get a correct dependency? I tried this one in carApp-web with all combination of scope, but only scope-provided is accepted otherwise i get a build failure.…
Bünyamin
  • 1
  • 1
0
votes
1 answer

Integrate OSGi with WildFly-8.2.0.Final

I would like to know the steps to integrate OSGi with WildFly-8.2.0.Final. I have followed https://docs.jboss.org/author/display/JBOSGI/Getting+Started?_sscc=t but it is for older version and thrown exceptions on startup. Please share if you ave any…
Valsaraj Viswanathan
  • 1,473
  • 5
  • 28
  • 51
0
votes
0 answers

Wildfly webapp does not log

I am new to wildlfy (comming from tomcat) and all my apps are using log4j. For some reason my webapps do not log anythig. I have tried to use WEB-INF/jboss-deployment-structure.xml
KIC
  • 5,887
  • 7
  • 58
  • 98
0
votes
0 answers

RIchfaces 3.2 - Session issue

I am using richfaces 3.2.0 SR1 with wildfly in my application and facing issue of login with different browsers. The issue is 1st i login with a particular credentials to my web-application using firefox browser it shows me HOME page which is…
Varun
  • 99
  • 2
  • 10