關於Play framework的總結(3)

2021-09-01 13:03:42 字數 684 閱讀 8141

這個專案是我所在公司針對本身開開發的乙個專案。分為兩部分,一部分是給客戶是用,一部分是給公司的人員是用。所以針對的登陸賬號來判斷是屬於客戶還是屬於公司人員

@retention(retentionpolicy.runtime)

@target()

public @inte***ce secure

每個action前都必須標識

@secure(companyuser=true,customeruser=true)

或者每個方法前標識

@secure(companyuser=true,customeruser=true)

play裡面每個action都必須繼承controller來實現

@before(unless = )

public static void securecheck()else if (secure.companyuser())

} else if (secure.customeruser())

} else if (secure.loginuser())

}

這樣的話,就能很好的把客戶和公司人員登陸很好的區分開來

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 開發環境搭建

建立專案 example f open source play 1.1 play new playmusic 建立後的專案包括以下目錄 啟動服務 example f open source play 1.1 play start playmusic 服務啟動後會提示pid,windows下的線程式號...