I am trying to use an ini file to login into a grails application with the shiro plugin. I have created an ini file and put it in the config folder. The ini is displayed below.
[main]
[users]
admin=heslo, Administrator
[roles]
Administrator = *
[urls]
I created a service with the method createSecurityManager() which I call at bootstrap:
def createSecurityManager() {
Factory<SecurityManager> factory = new IniSecurityManagerFactory("classpath:shiro.ini");
SecurityManager securityManager = factory.getInstance();
println securityManager
SecurityUtils.setSecurityManager(securityManager);
securityManager
}
When I try logging in using the username admin and password heslo, the login fails.