2013-12-22 129 views
0

我創建了一個名爲Worker的Play應用程序(它下面的文件夾和文件被創建)。Play Framework不能創建Intellij項目

現在進出口運行如下因素命令從這個應用程序的IntelliJ項目:

play idealize Worker 

返回:

play 2.2.1 built with Scala 2.10.2 (running Java 1.7.0_40), http://www.playfram 
work.com 

This is not a play application! 

Use `play new` to create a new Play application in the current directory, 
or go to an existing application and launch the development console using `play 
. 

You can also browse the complete documentation at http://www.playframework.com. 

如何解決這個問題?我已經用了2個小時試圖...

回答

1

根據Play!文檔:http://www.playframework.com/documentation/2.1.x/IDE

由於播放框架2.1你在遊戲控制檯使用命令:

[my_app] $ idea with-sources=yes 

你也可以不用進入遊戲控制檯,在終端中運行命令:

[my_app] $ play "idea with-sources=yes" 

只要記住你必須在你的項目的目錄內。

相關問題