Mod_JK
This is the one of the common module which most of the Java application server administrators had worked. I think it is the one which is mostly used with tomcat and jboss.
Here is a good tutorial for mod_jk
http://www.ramkitech.com/2012/03/virtual-host-apache-httpd-server-tomcat.html
I am adding to the above.
There are some scenario that some of the path we need to exclude from jkmount
JkMount /* abc
JkUnMount /static abc
Here in first line all the request for / is passing to abc worker but a context /static is removing from abc that should be serve from local apache.
This is the one of the common module which most of the Java application server administrators had worked. I think it is the one which is mostly used with tomcat and jboss.
Here is a good tutorial for mod_jk
http://www.ramkitech.com/2012/03/virtual-host-apache-httpd-server-tomcat.html
I am adding to the above.
There are some scenario that some of the path we need to exclude from jkmount
JkMount /* abc
JkUnMount /static abc
Here in first line all the request for / is passing to abc worker but a context /static is removing from abc that should be serve from local apache.