第一次執行

當我們建立專案時,Activator 告訴我們如何執行我們的應用程式

To run "HelloWorld" from the command line, "cd HelloWorld" then:
    /home/YourUserName/HelloWorld/activator run

這裡有一個小陷阱:activator 可執行檔案不在我們的專案根目錄中,而是在 bin/activator 中。此外,如果你將當前目錄更改為專案目錄,則可以執行

bin/activator

Activator 現在將下載所需的依賴項以編譯和執行你的專案。根據你的連線速度,這可能需要一些時間。希望你會收到提示

[HelloWorld] $ 

我們現在可以使用~run 執行我們的專案:這將告訴 Activator 執行我們的專案並監視更改。如果有變化,它將重新編譯所需的部件並重新啟動我們的應用程式。你可以按 Ctrl + D(返回到 Activator shell)或 Ctrl + D(轉到你的 OS shell)來停止此過程

[HelloWorld] $ ~run

Play 現在將下載更多依賴項。完成此過程後,你的應用就可以使用了:

-- (Running the application, auto-reloading is enabled) ---

[info] p.c.s.NettyServer - Listening for HTTP on /0:0:0:0:0:0:0:0:9000

(Server started, use Ctrl+D to stop and go back to the console...)

當你在瀏覽器中導航到 localhost:9000 時 ,你應該看到 Play 框架的起始頁面

StackOverflow 文件

恭喜,你現在已準備好對你的應用程式進行一些更改!