2
2

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 5 years have passed since last update.

IntelliJ で PlayFramework プロジェクトをデバックモードで起動する。

Last updated at Posted at 2015-12-12

前提条件

  • OS : MacOS X
  • brewインストール済み
  • Scala : version 2.11.x
  • IntelliJ IDEA 15
  • PlayFrameworkのプロジェクト作成済み →参照
  • PlayFrameworkのプロジェクトインポート済み →参照

1. 設定

メニューバーから Run > Edit Configurations
「+」をクリックして、「Remote」を選択する。

Run_Debug_Configurations_と_Application_scala_-play-hello-world-___IdeaProjects_play-hello-world.png

以下の様に設定する。

項目
Name 適当な名前を入力
Transport Socket
Debugger mode Attach
Host localhost
Port 9999
Search Sources using module's classpath whole project

Run_Debug_Configurations.png

2. 起動

メニューバーから View > Tool Windows > Terminal
Terminalウィンドウに以下のコマンドを入力する。

### 9999番ポートでデバックする
$ activator -jvm-debug 9999 run

こんな感じ。

Application_scala_-play-hello-world-___IdeaProjects_play-hello-world.png

3. デバック開始

3-1. メニューバーから Run > Run
3-2. ポップアップから 「設定で入力したName」 > Debug

Application_scala_-play-hello-world-___IdeaProjects_play-hello-world.png

コンソールにメッセージが出力されれば、準備完了です。

Application_scala_-play-hello-world-____IdeaProjects_play-hello-world__と_IntelliJ_で_PlayFramework_プロジェクトをデバックモードで起動する。.png

あとは、好きなとこにブレークポイントをおいて、http://localhost:9000 にアクセスすれば、デバックできます。

Application_scala_-play-hello-world-___IdeaProjects_play-hello-world.png

以上です!


Prev: IntelliJ IDEA 15 にPlayFrameworkのプロジェクトをインポートする。

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?