|
@@ -10,6 +10,7 @@ import org.springframework.web.servlet.config.annotation.PathMatchConfigurer;
|
|
|
import javax.validation.Valid;
|
|
|
import javax.validation.constraints.NotEmpty;
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
+import java.util.*;
|
|
|
|
|
|
@ConfigurationProperties(prefix = "citu.web")
|
|
|
@Validated
|
|
@@ -23,6 +24,11 @@ public class WebProperties {
|
|
|
@NotNull(message = "Admin UI 不能为空")
|
|
|
private Ui adminUi;
|
|
|
|
|
|
+ private Set<String> notFilterUrls = new HashSet<>(Arrays.asList("/app-api/menduner/system/get/version"));
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
@Data
|
|
|
@AllArgsConstructor
|
|
|
@NoArgsConstructor
|