问题描述
我的服务器应用程序使用 Ktor、Google App Engine、Maven 和 Java 11 标准环境。当我使用 gradle 和 Java 8 运行时,我能够正常部署和运行该应用程序,但我无法使其与 Maven 和 Java 11 运行时一起使用。
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 (将#修改为@)