grails-cookie-session icon indicating copy to clipboard operation
grails-cookie-session copied to clipboard

cookie sessions for grails applications

Results 18 grails-cookie-session issues
Sort by recently updated
recently updated
newest added

java.lang.NoClassDefFoundError: org/springframework/boot/context/embedded/FilterRegistrationBean

Hello, I have created a custom Session serializer which implements `SessionSerializer` and that is declared as bean `mySessionSerializer`. But I cannot use it with : `grails.plugin.cookiesession.serializer='mySessionSerializer'` The reason is that...

bug - disabling the cookie session causes the application to fail to launch

Build fails when using cookie-session-3.0.0 version even though I included https://repo.grails.org/grails/plugins. I had to include the following in repositories to make it work... maven { url "http://dl.bintray.com/benlucchesi/maven" } I thought...

On documentation, the property is _sethttponly_ : **grails.plugin.cookiesession.sethttponly** (http://plugins.grails.org/plugin/benlucchesi/cookie-session#understanding-cookiecount-and-maxcookiesize) If we set `grails.plugin.cookiesession.sethttponly = true` doesn't work. On code, the property is _httponly_ (https://github.com/benlucchesi/grails-cookie-session/blob/master/src/main/groovy/grails/plugin/cookiesession/CookieSessionRepository.groovy#L216) If we set `grails.plugin.cookiesession.httponly = true`...

Anyone faced similar issue ever? ``` 2016-07-20 14:23:42,728 |-ERROR - CookieSessionRepository - An error occurred while deserializing a session. com.esotericsoftware.kryo.KryoException: java.lang.IndexOutOfBoundsException: Index: 95, Size: 60 Serialization trace: provider (com.test.MyCommandClass) current...

We are using cookie session plugin in our application with spring security enabled . Seems like there is some unwanted data being stored in session which is causing the session...

It looks like the object used to hold keys used by the withForm method isn't serializable and is getting dropped from the session object. either that or the object isn't...

I cannot get kryo to work, I get this exception when hitting any page: ``` Message: Cannot cast object 'com.esotericsoftware.shaded.org.objenesis.strategy.StdInstantiatorStrategy@3f0f64c2' with class 'com.esotericsoftware.shaded.org.objenesis.strategy.StdInstantiatorStrategy' to class 'org.objenesis.strategy.InstantiatorStrategy' Line | Method ->>...

I'm using cookie-session with spring-security and spring-security-ui. I have the following settings, as instructed: ``` grails.plugin.cookiesession.springsecuritycompatibility = true grails.plugin.springsecurity.useSessionFixationPrevention = false ``` But the session gets bigger and bigger. For...