BootStrap.groovy の init クロージャーに次のコードがあります。
private def setupDefaultAdmin = {
log.info "Adding default user to system"
// create the super user/admin account
if (SentryUser.findAllByUsername("test@test.org") == null) {
def admin = new SentryUser(username: "test@test.org",password: 'password',
enabled: true).save(failOnError: true)
admin = new SentryUser(username: "admin@test.org",password: 'password',
enabled: true).save(failOnError: true)
}
}
このアプリケーションを JBOSS コンテナー バージョン 7.1 にデプロイすると、デプロイ時に無限ループに陥り続けます。私のDB設定は次のとおりです
production {
dataSource {
dbCreate = "update"
url = "jdbc:h2:mem:prodDb;MVCC=TRUE;LOCK_TIMEOUT=10000"
}
}