Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What configuration of JBoss should we used - web, standard, default?

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?

like image 989
Volodymyr Bezuglyy Avatar asked Nov 15 '22 15:11

Volodymyr Bezuglyy


1 Answers

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.

like image 170
skaffman Avatar answered May 15 '23 05:05

skaffman