> Hello > I am in the process of migrating jsecurity 0.3 plugin to the Shiro plugin > for grails. > > Earlier I had the following in the Conf.groovy > What should the Shrio equivalient for this line be? > > jsecurity.authentication.strategy = new > org.jsecurity.authc.pam.AtLeastOneSuccessfulModularAuthenticationStrategy()
security.shiro.authentication.strategy = new org.apache.shiro.authc.pam.AtLeastOneSuccessfulStrategy In fact, all "jsecurity.*" config settings have become "security.shiro.*", although one or two have changed name as well I think. Cheers, Peter
