Questions tagged [jboss]

JBoss Application Server (JBoss AS) is a free software/open-source Java EE-based, Cross-platform Application Server.

JBoss Application Server (JBoss AS) is a free software/open-source Java EE-based, Cross-platform Application Server.

The company JBoss is a division of Red Hat, Inc. that charges to provide a support subscription for JBoss Enterprise Middleware e.g. JBoss application server.

JBoss AS is a Java EE certified platform for developing and deploying enterprise Java applications, Web applications, and Portals. JBoss AS provides the full range of Java EE 6 features as well as extended enterprise services including clustering, caching, and persistence.

Starting with version 8, JBoss AS goes under the name .

Consider using a version specific tag:

References

Other Useful Resources

15135 questions
30
votes
10 answers

A component named 'XXX' is already defined in this module in JBoss 7.1.1

I did not create the spring bean name with TimerServiceDispatcher in my application. But, the JBoss throw exception because of TimerServiceDispatcher is already defined in this module. I don't know what is the problem. What I am missing? What I need…
Zaw Than oo
  • 9,651
  • 13
  • 83
  • 131
29
votes
5 answers

Jboss Java EE container and an ExecutorService

I have a standalone java app which used the ExecutorService to process a number of jobs in parallel ExecutorService es = Executors.newFixedThreadPool(10); I now want to re-use the same solution within an EJB bean but am unsure how to correctly…
emeraldjava
  • 10,894
  • 26
  • 97
  • 170
28
votes
3 answers

What to use instead of org.jboss.resteasy.client.ClientRequest?

I just found that org.jboss.resteasy.client.ClientRequest is deprecated, invalidating everything I could find on Google about how to use the RESTEasy client. The Javadoc gives no indication as to what to use instead. Google is likewise silent. I…
Torque
  • 3,319
  • 2
  • 27
  • 39
28
votes
8 answers

Any Java experience on Raspberry PI?

Is it possible to run average java app server on e.g. jboss or glassfish server on Raspberry pi? Any limitations? Does anyone have an experience in Java development for raspberry pi? At least any appropriate JVM for RPi will be nice.
johnny-b-goode
  • 3,792
  • 12
  • 45
  • 68
27
votes
8 answers

M1 mac cannot run jboss/keycloak docker image

Switched to m1 mac a week ago and I cannot get my application up and running with docker because of the jboss/keycloak image not working as expected. Getting the following message from the container when trying to access localhost:8080 12:08:12,456…
Ivan Andonöw
  • 373
  • 1
  • 3
  • 6
27
votes
5 answers

How to get access to the Hibernate Statistics

So in my persistence.xml I turned on hibernate.generate_statistics. true My question is how do I access them? Where do the statistics go?
mainstringargs
  • 13,563
  • 35
  • 109
  • 174
27
votes
20 answers

Starting JBoss from Eclipse

Staring JBoss server from within Eclipse Ganymede gives me the following problem: "Server JBoss v4.0 at localhost was unable to start within 120 seconds. If the server requires more time, try increasing the timeout in the server editor." The console…
Atlantis
27
votes
6 answers

JBoss 7.x or JBoss EAP 6.x

I am installing JBoss but I don't understand which version to choose. Should I download JBoss 7.x or the JBoss EAP 6.x? What is the difference?
LuckyLuke
  • 47,771
  • 85
  • 270
  • 434
27
votes
4 answers

JBoss 7, java.lang.OutOfMemoryError: PermGen space

I've hit this error where the CPU usage goes to its limits and JBoss needs a restart (java.lang.OutOfMemoryError: PermGen space). I found a solution for older JBoss version to increase the MaxPermSize. I guess the same goes for JBoss7. Which value…
MaVRoSCy
  • 17,747
  • 15
  • 82
  • 125
26
votes
5 answers

bouncycastle + JBoss AS7: JCE cannot authenticate the provider BC

I use BouncyCastle for encryption in my application. When I run it standalone, everything works fine. However, if I put it in the webapp and deploy on JBoss server, I get a following error: javax.servlet.ServletException: error constructing MAC:…
mrzasa
  • 22,895
  • 11
  • 56
  • 94
26
votes
4 answers

How to find the JMX port in a server?

I am sure I can figure it out if I can see the JAVA OPTS parameters. I want to monitor a hornetq server using Jconsole, so I need the port number. I remember using some command like java grep etc when I connected to it a while back.
user244333
26
votes
3 answers

No entity found for query Exception

I am executing the following lines: String queString = "some query string" Query q1 = em.createNativeQuery(queString, T03CallsLog.class); T03CallsLog newCall; newCall = (T03CallsLog) q1.getSingleResult(); //this line cause the exception…
rayman
  • 20,786
  • 45
  • 148
  • 246
26
votes
3 answers

how to make NGINX serve static content like .js, .css, .html?

Recently I have started using NGINX, I found that we can use it for reverse proxy, serving static content from itself which can reduce load time. I have a Tomcat/JBoss server on my local machine and I want to put NGINX in front of it so that static…
Pulkit
  • 3,953
  • 6
  • 31
  • 55
26
votes
2 answers

cleanest way to restart jboss using a script

I am using " ./standalone.sh -c standalone-full.xml " to start JBOSS. What is the cleanest way to restart jboss in this case? Any scripts that you can share?
Saqib Ali
  • 3,953
  • 10
  • 55
  • 100
26
votes
11 answers

SQLException: No suitable Driver Found for jdbc:oracle:thin:@//localhost:1521/orcl

I am trying to develop a Java EE application that connect to an Oracle database from eb service class but I encounter a SQLException: No suitable driver found for jdbc:oracle:thin:@//localhost:1521/orcl I have the ojdbc6.jar in the class path and…
nicholas
  • 2,581
  • 14
  • 66
  • 104