polymer-spring-boot icon indicating copy to clipboard operation
polymer-spring-boot copied to clipboard

Full stack Spring Boot + Polymer example application with JWT token authentication.

Results 2 polymer-spring-boot issues
Sort by recently updated
recently updated
newest added

.addFilterBefore(new TokenAuthFilter(tokenAuthService), UsernamePasswordAuthenticationFilter.class) .addFilterBefore(new LoginFilter("/auth/login", authenticationManager(), tokenAuthService), UsernamePasswordAuthenticationFilter.class); Should be - .addFilterBefore(new LoginFilter("/auth/login", authenticationManager(), tokenAuthService), UsernamePasswordAuthenticationFilter.class); .addFilterBefore(new TokenAuthFilter(tokenAuthService), UsernamePasswordAuthenticationFilter.class)

Hello ,I just run this project by ``` mvn clean package spring-boot:run -Pproduction ``` All run is ok ,But while open http://localhost:5000 ,I get a blank page , and see...