|
@@ -1,7 +1,5 @@
|
|
|
package com.ym.mec.cms.config;
|
|
|
|
|
|
-import javax.servlet.http.HttpServletResponse;
|
|
|
-
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
@@ -24,9 +22,10 @@ public class ResourceServerConfig extends ResourceServerConfigurerAdapter {
|
|
|
|
|
|
@Override
|
|
|
public void configure(HttpSecurity http) throws Exception {
|
|
|
- http.csrf().disable().exceptionHandling()
|
|
|
- .authenticationEntryPoint((request, response, authException) -> response.sendError(HttpServletResponse.SC_UNAUTHORIZED)).and()
|
|
|
- .authorizeRequests().antMatchers("/v2/api-docs", "/news/list", "/news/query/*").permitAll().anyRequest().authenticated().and().httpBasic();
|
|
|
+ http.authorizeRequests().antMatchers("/v2/api-docs", "/news/list", "/news/query/*").permitAll()// 任何人不登录都可以获取的资源
|
|
|
+ // .antMatchers("/ipController/**").hasIpAddress("127.0.0.1") //特定ip可以不登录获取资源
|
|
|
+ // .antMatchers("/ipControll/**").access("isAuthenticated() and hasIpAddress('127.0.0.1')")// 特定ip必须登录才能获取
|
|
|
+ .anyRequest().authenticated().and().csrf().disable();
|
|
|
}
|
|
|
|
|
|
@Override
|