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
17
votes
5 answers

JBoss AS 7.1 - datasource how to encrypt password

In JBoss AS 5, I have a datasource defined in *-ds.xml but put username/encrypted password in *-jboss-beans.xml. Now in JBoss AS 7.1, the datasource is defined in standalone.xml or domain.xml. Where do I put the encrypted password in AS 7.1? In…
Eric
  • 1,031
  • 4
  • 14
  • 29
16
votes
6 answers

jboss 7 AS datasource for sqlserver

I run jboss in standalone mode and have set my datasource in the standalone.xml to the following:
Marthin
  • 6,413
  • 15
  • 58
  • 95
16
votes
5 answers

Why do we use multi application server instances on the same server

I guess there is a good reason, but I don't understand why sometimes we put for example 5 instances having the same webapplications on the same physical server. Has it something to do with an optimisation for a multi processor architecture? The max…
Sebastien Lorber
  • 89,644
  • 67
  • 288
  • 419
16
votes
5 answers

How to change Java properties at runtime?

The question: Is there some way to "connect" to a running JVM and change system properties (given by -Dproperty=value) without stopping the JVM and without having programmed a way of doing it? Now, the context: I have a JBoss server running on a…
Bruno Teixeira
  • 3,099
  • 3
  • 16
  • 8
16
votes
3 answers

How can I run wildfly in debug mode, as a service on Windows?

I am running Wildfly as a service on windows. When I need to debug, I am shutting this down and starting Wildfly via standalone.bat -debug. What I want is to have the debug switch on always, when it runs as a service?
Inquisitor Shm
  • 1,433
  • 5
  • 17
  • 26
16
votes
6 answers

Huge amount of JAR files in jboss/server/web/tmp/vfs-nested.tmp directory

Sometimes we have huge amount of JAR files in jboss/server/web/tmp/vfs-nested.tmp directory. For example today this directory contained over 350k jar files. But on other hosts there are only 2 jar files in this directory. What can be the root…
Volodymyr Bezuglyy
  • 16,295
  • 33
  • 103
  • 133
16
votes
3 answers

Wildfly DuplicateServiceException

I have created simple EAR application using Maven archetype: wildfly-javaee7-webapp-ear-blank-archetype/8.2.0.Final http://s17.postimg.org/cy8zbpiu7/Zrzut_ekranu_z_2015_02_13_23_15_10.png My log from starting wildFly: Java HotSpot(TM) 64-Bit Server…
KamilJ
  • 249
  • 3
  • 5
  • 14
16
votes
7 answers

Using Docker in development for Java EE applications

I will add 300 points as bounty I have recently started to take a closer look at Docker and how I can use it for faster getting new member of the team up and running with the development environment as well as shipping new versions of the software…
LuckyLuke
  • 47,771
  • 85
  • 270
  • 434
16
votes
9 answers

What's the best way to share business object instances between Java web apps using JBoss and Spring?

We currently have a web application loading a Spring application context which instantiates a stack of business objects, DAO objects and Hibernate. We would like to share this stack with another web application, to avoid having multiple instances of…
16
votes
9 answers

JBoss Tools deploy error: This may be caused by your server's temporary deploy directory being on a different filesystem than the final destination

I have the following error when deploying an application with JBoss Tools in Eclipse: Error renaming C:\wildfly-8.1.0.Final\standalone\tmp\tmp7858611943756287857.xhtml to C:\wildfly-8.1.0.Final\standalone\deployments\.war\403.xhtml. This may be…
cassiomolin
  • 124,154
  • 35
  • 280
  • 359
16
votes
1 answer

syntax error near unexpected token `echo'

I am trying to execute the following code with an IP address as a parameter from the commandline; however I am getting an error saying - ": line 6: syntax error near unexpected token `echo' " . #!/bin/sh echo $1; declare -a values=$(ssh -q …
user2986175
  • 337
  • 1
  • 3
  • 8
16
votes
1 answer

Startup ejb bean does not work

I am trying to do something at startup using a startup ejb. But my bean is never called. This is my bean: import javax.annotation.PostConstruct; import javax.ejb.Startup; import javax.inject.Singleton; @Singleton @Startup public class StartupBean…
cremersstijn
  • 2,375
  • 4
  • 28
  • 41
16
votes
6 answers

How to setup JBoss server with Netbeans?

I'm trying to setup jBoss 7 server with NetBeans Wizard but it says "Provide a valid jBoss Application Server 6, 5 or 4 Location". I downloaded version 6 too to give it a try and it worked fine. What is the proper way of adding jBoss 7 on netbeans…
Tolga Evcimen
  • 7,112
  • 11
  • 58
  • 91
16
votes
1 answer

JBoss SAR vs EAR/WAR packaging

When would I choose to deploy as a JBoss SAR instead of an EAR? This is more of a general question and I'm looking for guidelines that explain the pros and cons of each deployment model and which one is applicable when.
nemo
  • 1,504
  • 3
  • 21
  • 41
15
votes
1 answer

Reading Client Certificate in Servlet

I have a Client Server Communication scenario in JBOSS and browser as client(JAVA PROGRAM). Initially when the connection is made, Client sends its Certificate to Server. Server extracts the public key of client from certificate and thus…
suraj
  • 1,828
  • 12
  • 36
  • 64