Hey, I can actually help with one of these q's! :) Look in the documentation for the cipherKey property, you need to set it or it gets regenerated each deploy. I can't remember what format it needs, but it needs to be a fairly specific format.
securityManager.rememberMeManager.cipherKey = <your key here> On Thu, Feb 23, 2017 at 12:43 PM, Simeó Reig <[email protected]> wrote: > How can we avoid to shiro removes all rememberMe cookies on each redeploy? > > We have implemented a custom realm, we thougth it was because we haven't > setted serialVersionUID in oir User pojo, but neither work with it > > Thanks again > > Simeo Reig > > > Shiro.ini > > [main] > authc.loginUrl = /login > user.loginUrl = /login > > adronicaRealm = com.mycompany.shirofaces.AdronicaRealm > > authc = org.apache.shiro.web.filter.authc.PassThruAuthenticationFilter > securityManager.rememberMeManager.cookie.name = shiroTest > securityManager.realms = $adronicaRealm > > [roles] > admin = * > user = usuaris:* , ventes:edicio, ventes:delete > user_grant = ventes:canvi > > [urls] > / = anon > /welcome = anon > /login = user > /admin/** = user > > > > > >
