微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Ktor 和 Java 11 运行时出现 Google App Engine 服务器错误

如何解决Ktor 和 Java 11 运行时出现 Google App Engine 服务器错误

我的服务器应用程序使用 Ktor、Google App Engine、Maven 和 Java 11 标准环境。当我使用 gradle 和 Java 8 运行时,我能够正常部署和运行该应用程序,但我无法使其与 Maven 和 Java 11 运行时一起使用。

这是我的 app.yaml 文件

runtime: java11
entrypoint: 'java -jar target/mainModule-0.0.1-jar-with-dependencies.jar'
handlers:
  - url: /stylesheets
static_dir: stylesheets

  - url: /(.*\.(gif|png|jpg))$
static_files: static/\1
upload: static/.*\.(gif|png|jpg)$

  - url: /.*
script: auto

instance_class: F1
automatic_scaling:
target_cpu_utilization: 0.95
min_instances: 1
max_instances: 1
min_idle_instances: 1
max_idle_instances: 1
min_pending_latency: 30ms
max_pending_latency: automatic
max_concurrent_requests: 50

这是我的文件夹结构:

源/主

appengine/app.yaml

kotlin/Application.kt

资源/应用程序.conf

资源/logback.xml

这是Application.kt文件

fun main(args: Array<String>): Unit = 
io.ktor.server.netty.EngineMain.main(args)

fun Application.module() {
        routing {
    get("/") {
        call.respondHtml {
            head {
                title { +"Ktor on Google App Engine Standard" }
            }
            body {
                p {
                    +"Hello there! This is App running on Google 
       Appengine"
                }
            }
        }
    }
}

使用此设置时,我总是收到 500 服务器错误。 GAE 的日志说:

Error: Unable to access jarfile target/mainModule-0.0.1-jar-with-dependencies.jar

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。