package com.artfess.query.config; import com.artfess.base.conf.WebSecurityExtend; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class QueryConfigWebSecurityExtend { @Bean WebSecurityExtend getQueryExtend() { return new WebSecurityExtend() { @Override public String[] getIgnoringPostUrl() { return new String[] { // "/biz/scada/pointSystem/v1/saveScadaPointCache" }; } }; } }