polymer-spring-boot
polymer-spring-boot copied to clipboard
Full stack Spring Boot + Polymer example application with JWT token authentication.
.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...