|
@@ -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()
|
|
|
+
|
|
|
+
|
|
|
+ .anyRequest().authenticated().and().csrf().disable();
|
|
|
}
|
|
|
|
|
|
@Override
|