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
69
votes
6 answers

Advantages/Disadvantages to exploded WAR files

An answer to a question I read today suggested deploying an application as an exploded (unzipped) WAR. It got me thinking. Every deployment I've ever done to a JBoss/Tomcat has been with a a WAR/EAR file. At least as far as I can remember. Have I…
Kevin D
  • 3,564
  • 1
  • 21
  • 38
67
votes
6 answers

JBoss debugging in Eclipse

How do you configure JBoss to debug an application in Eclipse?
Etam
  • 4,553
  • 10
  • 40
  • 60
67
votes
20 answers

org.hibernate.AssertionFailure: null id in entry (don't flush the Session after an exception occurs)

I have a hibernate and JSF2 application going to the deployment server and suddenly throwing an org.hibernate.AssertionFailure: null id in exception. I will provide the stack trace and code immediately but here are four important issues first:…
Herzog
  • 923
  • 1
  • 14
  • 28
66
votes
5 answers

How to change default port 8080 in WildFly

I just started JAVA EE development with WildFly 8.2. My first problem is how to change the default port 8080 to something else? I found many xml files containing below line. but I guess I…
dermoritz
  • 12,519
  • 25
  • 97
  • 185
64
votes
11 answers

What are the possible AOP use cases?

I'd like to make a picture of what are the possible cases for effective involvement of AOP in application design. All I have met so far is: logging-related security checks transaction management tweaking of a legacy application Anything else? (It…
Ondra Žižka
  • 43,948
  • 41
  • 217
  • 277
61
votes
17 answers

Address already in use: JVM_Bind java

Some times whenever I restart the application, which is built on Java Struts Mysql and Jboss 4.05 Version I get the error as Address already in use: JVM_Bind Only fix that i know is to restart the machine and try again, it will work. Else Some…
gmhk
  • 15,598
  • 27
  • 89
  • 112
60
votes
2 answers

How do you specify the root context in your tags in web.xml?

I would like to specify the root context of my Java web application in my WAR file. How can I do this using valid web-app XML in a web.xml file? Oh, yes I would like to do this in an application server agnostic way.
sewardrobert
  • 631
  • 1
  • 5
  • 5
60
votes
11 answers

How to enable TLS 1.2 in Java 7

I am trying to enable TLS 1.2 in my web app which uses JBoss 6.4 and Java 1.7. I have -Dhttp.protocols = TLSv1.2 in my application environment but it doesn't seem to work for me. Is there anything I could do to enable TLS 1.2? I wrote a simple…
New Bee
  • 603
  • 1
  • 5
  • 6
58
votes
3 answers

Difference between standalone.xml and standalone-full.xml

What is the Difference between standalone.xml and standalone-full.xml. In what scenarios we use standalone-full.xml
Muhammad Imran Tariq
  • 22,654
  • 47
  • 125
  • 190
57
votes
17 answers

Hot deploy on JBoss - how do I make JBoss "see" the change?

I am developing a Java EE application that I deploy over and over again on a local JBoss installation during development. I want to speed up the build by hot deploying my application straight into [JBOSS]/server/default/deploy/myApp It seems to work…
Jacob Hansson
  • 149
  • 3
  • 7
  • 19
56
votes
1 answer

Why are SpyJMSExceptions still thrown after recycling the client JBoss connection to remote queues?

My application below communicates as a client on a JBoss 7.2.0 system to a receiver JNDI/JMS on a JBoss 4.2.1 system. It creates a Send Queue and a Receive Queue. We have been running just fine for 2 months straight with this configuration; no…
JoshDM
  • 4,939
  • 7
  • 43
  • 72
52
votes
3 answers

Keycloak retrieve custom attributes to KeycloakPrincipal

In my rest service i can obtain the principal information after authentication using KeycloakPrincipal kcPrincipal = (KeycloakPrincipal) servletRequest.getUserPrincipal(); statement. Keycloak principal doesn't contain all the information i need…
Alex
  • 1,515
  • 2
  • 22
  • 44
51
votes
7 answers

getResourceAsStream() is always returning null

I have the following structure in a Java Web Application: TheProject -- [Web Pages] -- -- [WEB-INF] -- -- -- abc.txt -- -- index.jsp -- [Source Packages] -- -- [wservices] -- -- -- WS.java In WS.java, I am using the following code in…
Andreas Grech
  • 105,982
  • 98
  • 297
  • 360
49
votes
3 answers

What's the difference between standalone and domain on JEE6?

I'm starting an JBoss to use on the development, and I'm using it as standalone. I read that on the production environment the JBoss should be as a domain. I searched for that to understand what's the difference between than. But I didn't found any…
endrigoantonini
  • 1,191
  • 2
  • 15
  • 28
47
votes
13 answers

Weblogic or JBoss?

I am a long time Java developer on JBoss(and Tomcat). In the last year I had to develop over WebLogic and I have to say - I really miss JBoss. Since my experience with WebLogic is pretty shallow, I am asking the more experienced guys out there: Is…
Avi Y
  • 2,456
  • 4
  • 29
  • 35