I did a simple test was very well.
entry shell command :
new controller automatic... -dateFormat yyyy-MM-dd.
and, generated @RooWebScaffold :
@RooWebScaffold(path = "account", automaticallyMaintainView = true, formBackingObject = Account.class, dateFormat = "yyyy-MM-dd")
it is tested simply full roo script.
Code:
// project
create project -topLevelPackage kr.js.sms -projectName max
configure logging -level DEBUG
install jpa -provider HIBERNATE -database HYPERSONIC_IN_MEMORY
// Account
new persistent class jpa -name ~.domain.Account
add field string -class ~.domain.Account -fieldName accountId -notNull -sizeMin 4 -sizeMax 20
add field string -class ~.domain.Account -fieldName accountPw -notNull -sizeMin 4 -sizeMax 20
add field date jpa -class ~.domain.Account -fieldName regDate -type java.util.Date
// test
new integration test -entity ~.domain.Account
//controller
new controller automatic -name ~.web.AccountController -formBackingObject ~.domain.Account -dateFormat yyyy-MM-dd
im so happy. thanks Stefan