0

有人在远程 Tomcat 服务器上成功部署了 Ktor 项目吗?

我正在做一个项目,当我在本地部署中尝试测试一切都很好,但是当我尝试生成 .war 并部署在我的远程 tomcat 服务器上时,我在尝试访问 servlet 时总是得到 404。

部署似乎没问题,一切正常,但我无法与我的 servlet 通信。

我已经阅读了很多指南,但所有人都在本地尝试过。

问候

4

1 回答 1

0

Ktor people is improving now this functionality (https://github.com/ktorio/ktor/issues/738), but is not implemented yet. To solve this problem, you need to add the name of the FILEWAR.war, before of compile, on the routes:

route(FILEWAR) {
    get("/foo") { ...

Solution: https://github.com/ktorio/ktor/issues/487

于 2019-03-27T09:11:09.540 回答