Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的计算机上下载了 TC 服务器标准版,因为这是安装在 QA 服务器上的版本。我的最终目标是编写一个 maven 任务来在远程 tc 服务器的实例中部署一个战争应用程序。
因为使用的是标准版,所以没有预装tomcat管理器(所以不能再使用maven的cargo插件了)。
那么有什么方法可以将我的 jar 部署到远程服务器实例中,而无需手动将其放入 webapp 文件夹中?
提前致谢 !
这里有几个选项:
1) 我们的最新版本 3.2.x(标准)引入了 tomcat-manager 模板,它将设置 Manager webapp 并为生产环境保护它。
2)您也可以使用tc Server的开发者版。如果它是相同的版本,它将几乎相同,它只是不包含标准版中的一些模板。
3) 添加一个将 Manager webapp 复制到 webapps 文件夹的 maven 目标。