@@ -26,6 +26,9 @@ public class ResourceServerConfigurer extends ResourceServerConfigurerAdapter {
.csrf().disable()
.authorizeRequests()
.regexMatchers(".*swagger.*", ".*v2.*", ".*webjars.*", "/druid.*", "/actuator.*", "/hystrix.*").permitAll()
+ .antMatchers("/getIcssEnumsData").permitAll()
+ .antMatchers("/concept/getConceptMap").permitAll()
+ .antMatchers("/concept/getConceptListByType").permitAll()
.antMatchers("/**").authenticated();
// .antMatchers("/**").permitAll();
}
@@ -89,6 +89,9 @@ public class UrlAccessDecisionManager implements AccessDecisionManager {
|| matchers("/druid/**", request)
|| matchers("/actuator/**", request)
|| matchers("/hystrix/**", request)
+ || matchers("/getIcssEnumsData", request)
+ || matchers("/concept/getConceptMap", request)
+ || matchers("/concept/getConceptListByType", request)
|| matchers("/", request)) {
return true;