0
我嘗試將安全性添加到其他應用程序。未授權訪問彈簧安全
我配置我的課誰擴展WebSecurityConfigurerAdapter。
http.authorizeRequests().antMatchers("/rest/**").authenticated();
http.csrf().disable();
http.exceptionHandling().authenticationEntryPoint(authenticationEntryPoint);
http.formLogin().successHandler(authenticationSuccessHandler);
http.formLogin().failureHandler(authenticationFailureHandler);
我有一個login.html,index.html誰加載(通過jQuery)一些其他HTML文件在index.html。
我試着用捲曲
curl -i -X POST -d username=test -d password=test http://localhost:8080/rest/cities
訪問服務,我收到了
HTTP/1.1 401 Unauthorized
與其餘所有URL被固定,但我提供的用戶名和密碼應字。
當我調試時,我看到,然後我的類實現UserDetailsService誰擁有方法loadUserByUsername永遠不會被調用。
有些人不正確地做鏈接。
感謝工作,只需要看看有沒有辦法保護我的html文件。 –