0
如何在基於java的WebSecurity中配置允許訪問某些URL。我試過如下如何在春季安全中配置網絡安全以允許一些URL訪問?
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeUrls()
.antMatchers("/rest/**").permitAll().antMatchers("/admin/**").hasRole("ADMIN");
}
這上面我想允許「/ REST/」 **所有(這意味着該URL應該不會受到安全)和「/管理/**」應擔保並擁有Admin權限。僅供參考,我也使用Spring oauth,所以「/ oauth/token」也應該可供所有人訪問。
感謝它的工作。 –
@Dias如果我想讓'/ admin/termsAndCondition'公開嗎? –