0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

kotlin on heroku & spring getting started

Last updated at Posted at 2021-01-23

A barebones Kotlin app, which can easily be deployed to Heroku.

HerokuでKotlin Webを動作する備忘録です

ソースは以下に保存しています。
https://github.com/sugasaki/start-kotlin-heroku


Spring Initializr

まずは、プロジェクトの雛形をSpring Initializrから作成します。

スクリーンショット 2021-01-24 1 40 07

当時とはUIが変わっていますが、以下を参考に
Kotlin + Spring Boot でHello! World! - Qiita

Procfile

Procfileファイルをルートに作成

web: java -Dserver.port=$PORT $JAVA_OPTS -jar build/libs/demo-0.0.1-SNAPSHOT.jar

or

web: java -Dserver.port=$PORT $JAVA_OPTS -jar build/libs/*.jar

javaを11に変更

Spring InitializrでJava11を選択したので、HerokuのJavamo11に変更する

Javaバージョンの指定するには、system.propertiesを追加する必要がある。

アクティベーションHeroku の Java サポート | Heroku Dev Center

system.properties

system.properties
java.runtime.version=11

git

git init
git add .
git commit  -m 'first commit'

heroku

heroku create
heroku apps
git push heroku master

run

heroku open /hello

heroku open /hello?name=jon

on local

http://localhost:8080/hello

on heroku

https://shielded-crag-62835.herokuapp.com/hello

trouble shout

heroku logs --tail
heroku run console
2021-01-23T13:29:09.479056+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/hello" host=sheltered-bastion-78347.herokuapp.com request_id=0b22f443-e210-4efa-bc09-4cd3ccf1023b fwd="121.113.51.72" dyno= connect= service= status=503 bytes= protocol=https
2021-01-23T13:29:10.404987+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=sheltered-bastion-78347.herokuapp.com request_id=1777303e-eab5-45e2-a21b-7745107c8172 fwd="121.113.51.72" dyno= connect= service= status=503 bytes= protocol=https
^

heroku local web

[WARN] ENOENT: no such file or directory, open 'Procfile'
[FAIL] No Procfile and no package.json file found in Current Directory - See run-foreman.js --help

参考

Deploying Gradle Apps on Heroku | Heroku Dev Center

Heroku—Ktor

Heroku - サーバー - Ktor

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?