views:

329

answers:

2

We develop web application and we are going to deploy it on JBoss. Now we use JSF, Facelets, Webflow, JMX, Spring. We are going to use JMS(ActiveMQ). Maybe in the future we will use EJB3. But for near future we will not use it.

What configuration of JBoss would be better to use - web, standard, default? And why?

A: 

I've never found the need to use anything other than default, sometimes removing some of the config. And that's included JMS, EJB, Spring, Webflow, etc.

cletus
+1  A: 

Go for the smallest config that does what you need. The "web" configuration seems to have everything you need, including ejb3 support.

Remember, the configurations in the distribution are just examples. It's perfectly acceptable to create custom server configs by copying the deployers and libs around to produce a config that does exactly what you need.

skaffman