Deploy the war file in Microsoft IIS 7

I would like to ask how can I deploy a war file in Microsoft IIS 7? Thanks in advance.

+6
source share
2 answers

You can not. To do this, you need a Java EE web container such as Tomcat or JBoss. IIS can simply act as a front proxy for material hosted in a WAR file.

Perhaps you need a way to connect IIS and Tomcat so that requests for any dynamic resources, such as JSPs and servlets, can be delegated by Tomcat.

The following link explains how to do this in detail.

http://tomcat.apache.org/connectors-doc/webserver_howto/iis.html

+13
source

Read this article: Deploying Java Servlet Applications on Windows with IIS Java runs on Jetty and IIS is used as a proxy server, but in this solution all the components fit together to look and feel like it is a built-in IIS function to run WAR files .

+4
source

Source: https://habr.com/ru/post/909059/


All Articles