我使用的是Grails Spring Security Core和Grails Spring Security REST plugin,我剛剛開始設置事情。我使用User類和Authority類(默認值)對插件進行初始化,然後繼續編寫集成測試,然後輸入guide I found on the Grails website。 它說,把下面的在集成測試: def "test a user with t
當我在Grails中使用RestfulController來保存對象的數據時,如何防止客戶端將更改應用到相關的子對象? 假定下列域類: class Language {
String name
}
class TranslationText {
Language language
String text
}
而對於一個TranslationText以下PO