0

リモート Tomcat サーバーに Ktor プロジェクトを正常にデプロイした人はいますか?

私はプロジェクトに取り組んでおり、すべてをテストするためにローカル展開で試してみると問題ありませんが、.war を生成してリモート Tomcat サーバーに展開しようとすると、サーブレットにアクセスしようとすると常に 404 が返されます。

デプロイは問題ないようです。すべてがエラーなく動作しますが、サーブレットと通信できません。

私はたくさんのガイドを読みましたが、すべての人がローカルで試しています。

よろしく

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 に答える