Play Framework 開發環境搭建

2021-09-06 04:46:03 字數 780 閱讀 9873

建立專案:

example:f:\open_source\play-1.1>play new playmusic

建立後的專案包括以下目錄:

啟動服務:

example:f:\open_source\play-1.1>play start playmusic

服務啟動後會提示pid,windows下的線程式號。在瀏覽器輸入http://localhost:9000/,,就能看過歡迎頁面了,內建的jboss netty預設埠號是9000,http://localhost:9000/@documentation/是play文件頁面。

結束服務:

example:f:\open_source\play-1.1>play stop playmusic

匯入eclipse中:

example:f:\open_source\play-1.1>play eclipsify playmusic

會生成eclipse的依賴檔案

在eclipse中file-import-existing projects into workspace-next-browse 選擇你的專案,若沒有編輯錯誤,說明專案已經匯入eclipse中了。

**管理:

我個人的習慣是無論多小的專案都使用**管理,我的選擇是**管理工具是tortoisesvn,**空間是code.google.com。

這樣,大功告成了,開發環境搭建完成。

play framework中實現分頁

在playframework中實現分頁,我是採用了資料庫的fetch原理實現的。首先,在controllers中 public static void previouspage int startposition else showalluploads startposition public st...

Play framework模板引擎 一

在controller中 renderargs.put client client 模板裡面就可以這樣寫 tags tag就是可以帶引數的模板碎片,如果tag只有乙個引數,預設名稱會叫做 arg arg的引數名稱可以忽略 例如 可以寫成 集合型別的用list tag 呵呵,有點懶了,其他的翻文件好了...

關於Play framework的總結(3)

這個專案是我所在公司針對本身開開發的乙個專案。分為兩部分,一部分是給客戶是用,一部分是給公司的人員是用。所以針對的登陸賬號來判斷是屬於客戶還是屬於公司人員 retention retentionpolicy.runtime target public inte ce secure 每個action前...