noboday

Results 8 comments of noboday

@samaxes I use maven module projects,kxwp-parent is the parent project. ![image](https://cloud.githubusercontent.com/assets/123967/21087061/57799926-c05d-11e6-9b92-e6306a560b5c.png) I reference the demo config as follow: ![image](https://cloud.githubusercontent.com/assets/123967/21087252/1057988e-c05f-11e6-968a-6168cf97eda0.png) still not work. the debug information in the project build process,...

my customize property:higo-build-time and the property is in MANIFEST.MF file: ``` java Manifest-Version: 1.0 higo-build-time: 20150820064447 Build-Jdk: 1.7.0_79 Built-By: janwen Created-By: Maven Integration for Eclipse ```

``` org.springframework.session spring-session-data-mongodb 2.0.0.RELEASE org.springframework.boot spring-boot-starter-parent 1.5.9.RELEASE ```

and i just run the spring boot application in spring tool suite.

thanks,@gregturn i add `spring.data.mongodb.uri=mongodb://myfuture:myfuture!%[email protected]:27017/myfuture_dev ` to the application.properties,and comment the ``` //@Component class EmbeddedMongoPortLogger implements ApplicationRunner, EnvironmentAware { ``` when i start the example spring-session-data-mongodb-traditional-boot,can not login,web browser shows 'ERR_TOO_MANY_REDIRECTS'

``` java.lang.ClassCastException: java.util.LinkedHashMap cannot be cast to org.springframework.security.web.csrf.CsrfToken at org.springframework.security.web.csrf.HttpSessionCsrfTokenRepository.loadToken(HttpSessionCsrfTokenRepository.java:80) ~[spring-security-web-5.0.0.M3.jar:na] at org.springframework.security.web.csrf.LazyCsrfTokenRepository.loadToken(LazyCsrfTokenRepository.java:80) ~[spring-security-web-5.0.0.M3.jar:na] at org.springframework.security.web.csrf.CsrfFilter.doFilterInternal(CsrfFilter.java:90) ~[spring-security-web-5.0.0.M3.jar:na] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.0.0.RC3.jar:5.0.0.RC3] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-5.0.0.M3.jar:na] at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64) ~[spring-security-web-5.0.0.M3.jar:na] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.0.0.RC3.jar:5.0.0.RC3] at...