You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spittr Web Security in Chapiter seems to be not flexible enough to handle a jdbc Authentication
as following protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth .jdbcAuthentication() .dataSource(dataSource) .usersByUsernameQuery( "select username, password " + "from splitter where username=?") .authoritiesByUsernameQuery("select username, 'ROLE_USER' from Spitter where username=?"); }
The text was updated successfully, but these errors were encountered:
Spittr Web Security in Chapiter seems to be not flexible enough to handle a jdbc Authentication
as following
protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth .jdbcAuthentication() .dataSource(dataSource) .usersByUsernameQuery( "select username, password " + "from splitter where username=?") .authoritiesByUsernameQuery("select username, 'ROLE_USER' from Spitter where username=?"); }
The text was updated successfully, but these errors were encountered: