最终引导.groovy
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最终引导.groovy相关的知识,希望对你有一定的参考价值。
class BootStrap { def authenticateService //Adding Roles //Adding Users userRealName:'god almighty', enabled: true, emailShow: true, email: '[email protected]', passwd: authenticateService.encodePassword('god')).save() userRealName:'poor slave', enabled: true, emailShow: true, email: '[email protected]', passwd: authenticateService.encodePassword('slave')).save() //Note that here we associate users with their respective roles roleAdmin.addToPeople(userGod) roleUser.addToPeople(userGod) roleUser.addToPeople(userSlave) } } }
以上是关于最终引导.groovy的主要内容,如果未能解决你的问题,请参考以下文章
在引导程序中使用 groovy 元类模拟 Shiro SecurityUtils