mirror of
https://gitee.com/mirrors/Spring-Cloud-Alibaba.git
synced 2021-06-26 13:25:11 +08:00
fix #716, the conflicts of SlotChainBuilder SPI
This commit is contained in:
parent
0b85739544
commit
5358b2c1a8
@ -6,8 +6,6 @@ import java.util.Optional;
|
|||||||
import org.springframework.cloud.alibaba.sentinel.datasource.config.AbstractDataSourceProperties;
|
import org.springframework.cloud.alibaba.sentinel.datasource.config.AbstractDataSourceProperties;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
|
|
||||||
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiDefinition;
|
|
||||||
import com.alibaba.csp.sentinel.adapter.gateway.common.rule.GatewayFlowRule;
|
|
||||||
import com.alibaba.csp.sentinel.slots.block.AbstractRule;
|
import com.alibaba.csp.sentinel.slots.block.AbstractRule;
|
||||||
import com.alibaba.csp.sentinel.slots.block.authority.AuthorityRule;
|
import com.alibaba.csp.sentinel.slots.block.authority.AuthorityRule;
|
||||||
import com.alibaba.csp.sentinel.slots.block.degrade.DegradeRule;
|
import com.alibaba.csp.sentinel.slots.block.degrade.DegradeRule;
|
||||||
@ -46,11 +44,13 @@ public enum RuleType {
|
|||||||
/**
|
/**
|
||||||
* gateway flow
|
* gateway flow
|
||||||
*/
|
*/
|
||||||
GW_FLOW("gw-flow", GatewayFlowRule.class),
|
GW_FLOW("gw-flow",
|
||||||
|
"com.alibaba.csp.sentinel.adapter.gateway.common.rule.GatewayFlowRule"),
|
||||||
/**
|
/**
|
||||||
* api
|
* api
|
||||||
*/
|
*/
|
||||||
GW_API_GROUP("gw-api-group", ApiDefinition.class);
|
GW_API_GROUP("gw-api-group",
|
||||||
|
"com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiDefinition");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* alias for {@link AbstractRule}
|
* alias for {@link AbstractRule}
|
||||||
@ -60,20 +60,40 @@ public enum RuleType {
|
|||||||
/**
|
/**
|
||||||
* concrete {@link AbstractRule} class
|
* concrete {@link AbstractRule} class
|
||||||
*/
|
*/
|
||||||
private final Class clazz;
|
private Class clazz;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* concrete {@link AbstractRule} class name
|
||||||
|
*/
|
||||||
|
private String clazzName;
|
||||||
|
|
||||||
RuleType(String name, Class clazz) {
|
RuleType(String name, Class clazz) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.clazz = clazz;
|
this.clazz = clazz;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
RuleType(String name, String clazzName) {
|
||||||
|
this.name = name;
|
||||||
|
this.clazzName = clazzName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Class getClazz() {
|
public Class getClazz() {
|
||||||
|
if (clazz != null) {
|
||||||
return clazz;
|
return clazz;
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
try {
|
||||||
|
return Class.forName(clazzName);
|
||||||
|
}
|
||||||
|
catch (ClassNotFoundException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static Optional<RuleType> getByName(String name) {
|
public static Optional<RuleType> getByName(String name) {
|
||||||
if (StringUtils.isEmpty(name)) {
|
if (StringUtils.isEmpty(name)) {
|
||||||
|
@ -12,8 +12,6 @@ import org.slf4j.LoggerFactory;
|
|||||||
import org.springframework.cloud.alibaba.sentinel.datasource.RuleType;
|
import org.springframework.cloud.alibaba.sentinel.datasource.RuleType;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
|
|
||||||
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiDefinition;
|
|
||||||
import com.alibaba.csp.sentinel.adapter.gateway.common.rule.GatewayFlowRule;
|
|
||||||
import com.alibaba.csp.sentinel.datasource.Converter;
|
import com.alibaba.csp.sentinel.datasource.Converter;
|
||||||
import com.alibaba.csp.sentinel.slots.block.authority.AuthorityRule;
|
import com.alibaba.csp.sentinel.slots.block.authority.AuthorityRule;
|
||||||
import com.alibaba.csp.sentinel.slots.block.degrade.DegradeRule;
|
import com.alibaba.csp.sentinel.slots.block.degrade.DegradeRule;
|
||||||
@ -57,11 +55,13 @@ public abstract class SentinelConverter<T extends Object>
|
|||||||
Collection<Object> ruleCollection;
|
Collection<Object> ruleCollection;
|
||||||
|
|
||||||
// hard code
|
// hard code
|
||||||
if (ruleClass == GatewayFlowRule.class || ruleClass == ApiDefinition.class) {
|
if (ruleClass == FlowRule.class || ruleClass == DegradeRule.class
|
||||||
ruleCollection = new HashSet<>();
|
|| ruleClass == SystemRule.class || ruleClass == AuthorityRule.class
|
||||||
|
|| ruleClass == ParamFlowRule.class) {
|
||||||
|
ruleCollection = new ArrayList<>();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
ruleCollection = new ArrayList<>();
|
ruleCollection = new HashSet<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (StringUtils.isEmpty(source)) {
|
if (StringUtils.isEmpty(source)) {
|
||||||
|
@ -19,6 +19,14 @@
|
|||||||
<artifactId>spring-cloud-starter-netflix-zuul</artifactId>
|
<artifactId>spring-cloud-starter-netflix-zuul</artifactId>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.alibaba.csp</groupId>
|
||||||
|
<artifactId>sentinel-api-gateway-adapter-common</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.alibaba.csp</groupId>
|
||||||
|
<artifactId>sentinel-parameter-flow-control</artifactId>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.alibaba.csp</groupId>
|
<groupId>com.alibaba.csp</groupId>
|
||||||
<artifactId>sentinel-zuul-adapter</artifactId>
|
<artifactId>sentinel-zuul-adapter</artifactId>
|
||||||
@ -27,11 +35,20 @@
|
|||||||
<groupId>com.alibaba.csp</groupId>
|
<groupId>com.alibaba.csp</groupId>
|
||||||
<artifactId>sentinel-spring-cloud-gateway-adapter</artifactId>
|
<artifactId>sentinel-spring-cloud-gateway-adapter</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-alibaba-sentinel-datasource</artifactId>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.cloud</groupId>
|
<groupId>org.springframework.cloud</groupId>
|
||||||
<artifactId>spring-cloud-starter-gateway</artifactId>
|
<artifactId>spring-cloud-starter-gateway</artifactId>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||||
|
<artifactId>jackson-dataformat-xml</artifactId>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-configuration-processor</artifactId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||||||
|
@ -0,0 +1,161 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2018 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.springframework.cloud.alibaba.sentinel.gateway;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Iterator;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Map.Entry;
|
||||||
|
|
||||||
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
|
||||||
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
|
||||||
|
import org.springframework.cloud.alibaba.sentinel.datasource.converter.JsonConverter;
|
||||||
|
import org.springframework.cloud.alibaba.sentinel.datasource.converter.XmlConverter;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiDefinition;
|
||||||
|
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiPathPredicateItem;
|
||||||
|
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiPredicateGroupItem;
|
||||||
|
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiPredicateItem;
|
||||||
|
import com.alibaba.csp.sentinel.adapter.gateway.common.rule.GatewayFlowRule;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.core.JsonParser;
|
||||||
|
import com.fasterxml.jackson.core.Version;
|
||||||
|
import com.fasterxml.jackson.databind.DeserializationContext;
|
||||||
|
import com.fasterxml.jackson.databind.DeserializationFeature;
|
||||||
|
import com.fasterxml.jackson.databind.JsonNode;
|
||||||
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
|
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
|
||||||
|
import com.fasterxml.jackson.databind.module.SimpleModule;
|
||||||
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
||||||
|
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author <a href="mailto:fangjian0423@gmail.com">Jim</a>
|
||||||
|
*/
|
||||||
|
@Configuration
|
||||||
|
@ConditionalOnProperty(name = "spring.cloud.sentinel.enabled", matchIfMissing = true)
|
||||||
|
public class SentinelGatewayAutoConfiguration {
|
||||||
|
|
||||||
|
@ConditionalOnClass(ObjectMapper.class)
|
||||||
|
@Configuration
|
||||||
|
protected static class SentinelConverterConfiguration {
|
||||||
|
|
||||||
|
static class ApiPredicateItemDeserializer
|
||||||
|
extends StdDeserializer<ApiPredicateItem> {
|
||||||
|
private Map<String, Class<? extends ApiPredicateItem>> registry = new HashMap<String, Class<? extends ApiPredicateItem>>();
|
||||||
|
|
||||||
|
ApiPredicateItemDeserializer() {
|
||||||
|
super(ApiPredicateItem.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
void registerApiPredicateItem(String uniqueAttribute,
|
||||||
|
Class<? extends ApiPredicateItem> apiPredicateItemClass) {
|
||||||
|
registry.put(uniqueAttribute, apiPredicateItemClass);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ApiPredicateItem deserialize(JsonParser jp,
|
||||||
|
DeserializationContext ctxt) throws IOException {
|
||||||
|
ObjectMapper mapper = (ObjectMapper) jp.getCodec();
|
||||||
|
ObjectNode root = mapper.readTree(jp);
|
||||||
|
Class<? extends ApiPredicateItem> apiPredicateItemClass = null;
|
||||||
|
Iterator<Entry<String, JsonNode>> elementsIterator = root.fields();
|
||||||
|
while (elementsIterator.hasNext()) {
|
||||||
|
Entry<String, JsonNode> element = elementsIterator.next();
|
||||||
|
String name = element.getKey();
|
||||||
|
if (registry.containsKey(name)) {
|
||||||
|
apiPredicateItemClass = registry.get(name);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (apiPredicateItemClass == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return mapper.readValue(root.toString(), apiPredicateItemClass);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
protected static class SentinelJsonConfiguration {
|
||||||
|
|
||||||
|
private ObjectMapper objectMapper = new ObjectMapper();
|
||||||
|
|
||||||
|
public SentinelJsonConfiguration() {
|
||||||
|
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,
|
||||||
|
false);
|
||||||
|
|
||||||
|
ApiPredicateItemDeserializer deserializer = new ApiPredicateItemDeserializer();
|
||||||
|
deserializer.registerApiPredicateItem("pattern",
|
||||||
|
ApiPathPredicateItem.class);
|
||||||
|
deserializer.registerApiPredicateItem("items",
|
||||||
|
ApiPredicateGroupItem.class);
|
||||||
|
SimpleModule module = new SimpleModule(
|
||||||
|
"PolymorphicApiPredicateItemDeserializerModule",
|
||||||
|
new Version(1, 0, 0, null));
|
||||||
|
module.addDeserializer(ApiPredicateItem.class, deserializer);
|
||||||
|
objectMapper.registerModule(module);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean("sentinel-json-gw-flow-converter")
|
||||||
|
public JsonConverter jsonGatewayFlowConverter() {
|
||||||
|
return new JsonConverter(objectMapper, GatewayFlowRule.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean("sentinel-json-gw-api-group-converter")
|
||||||
|
public JsonConverter jsonApiConverter() {
|
||||||
|
return new JsonConverter(objectMapper, ApiDefinition.class);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConditionalOnClass(XmlMapper.class)
|
||||||
|
@Configuration
|
||||||
|
protected static class SentinelXmlConfiguration {
|
||||||
|
|
||||||
|
private XmlMapper xmlMapper = new XmlMapper();
|
||||||
|
|
||||||
|
public SentinelXmlConfiguration() {
|
||||||
|
xmlMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,
|
||||||
|
false);
|
||||||
|
ApiPredicateItemDeserializer deserializer = new ApiPredicateItemDeserializer();
|
||||||
|
deserializer.registerApiPredicateItem("pattern",
|
||||||
|
ApiPathPredicateItem.class);
|
||||||
|
deserializer.registerApiPredicateItem("items",
|
||||||
|
ApiPredicateGroupItem.class);
|
||||||
|
SimpleModule module = new SimpleModule(
|
||||||
|
"PolymorphicGatewayDeserializerModule",
|
||||||
|
new Version(1, 0, 0, null));
|
||||||
|
module.addDeserializer(ApiPredicateItem.class, deserializer);
|
||||||
|
xmlMapper.registerModule(module);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean("sentinel-xml-gw-flow-converter")
|
||||||
|
public XmlConverter xmlGatewayFlowConverter() {
|
||||||
|
return new XmlConverter(xmlMapper, GatewayFlowRule.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean("sentinel-xml-gw-api-group-converter")
|
||||||
|
public XmlConverter xmlApiConverter() {
|
||||||
|
return new XmlConverter(xmlMapper, ApiDefinition.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,3 +1,4 @@
|
|||||||
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
|
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
|
||||||
org.springframework.cloud.alibaba.sentinel.gateway.zuul.SentinelZuulAutoConfiguration,\
|
org.springframework.cloud.alibaba.sentinel.gateway.zuul.SentinelZuulAutoConfiguration,\
|
||||||
org.springframework.cloud.alibaba.sentinel.gateway.scg.SentinelSCGAutoConfiguration
|
org.springframework.cloud.alibaba.sentinel.gateway.scg.SentinelSCGAutoConfiguration,\
|
||||||
|
org.springframework.cloud.alibaba.sentinel.gateway.SentinelGatewayAutoConfiguration
|
@ -84,6 +84,12 @@
|
|||||||
<artifactId>sentinel-parameter-flow-control</artifactId>
|
<artifactId>sentinel-parameter-flow-control</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.alibaba.csp</groupId>
|
||||||
|
<artifactId>sentinel-api-gateway-adapter-common</artifactId>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.alibaba.csp</groupId>
|
<groupId>com.alibaba.csp</groupId>
|
||||||
<artifactId>sentinel-cluster-server-default</artifactId>
|
<artifactId>sentinel-cluster-server-default</artifactId>
|
||||||
@ -105,11 +111,6 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.alibaba.csp</groupId>
|
|
||||||
<artifactId>sentinel-api-gateway-adapter-common</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!--spring boot-->
|
<!--spring boot-->
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -16,12 +16,6 @@
|
|||||||
|
|
||||||
package org.springframework.cloud.alibaba.sentinel.custom;
|
package org.springframework.cloud.alibaba.sentinel.custom;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Iterator;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Map.Entry;
|
|
||||||
|
|
||||||
import javax.annotation.PostConstruct;
|
import javax.annotation.PostConstruct;
|
||||||
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
@ -40,11 +34,6 @@ import org.springframework.context.annotation.Configuration;
|
|||||||
import org.springframework.core.env.Environment;
|
import org.springframework.core.env.Environment;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
|
|
||||||
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiDefinition;
|
|
||||||
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiPathPredicateItem;
|
|
||||||
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiPredicateGroupItem;
|
|
||||||
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiPredicateItem;
|
|
||||||
import com.alibaba.csp.sentinel.adapter.gateway.common.rule.GatewayFlowRule;
|
|
||||||
import com.alibaba.csp.sentinel.adapter.servlet.config.WebServletConfig;
|
import com.alibaba.csp.sentinel.adapter.servlet.config.WebServletConfig;
|
||||||
import com.alibaba.csp.sentinel.annotation.aspectj.SentinelResourceAspect;
|
import com.alibaba.csp.sentinel.annotation.aspectj.SentinelResourceAspect;
|
||||||
import com.alibaba.csp.sentinel.config.SentinelConfig;
|
import com.alibaba.csp.sentinel.config.SentinelConfig;
|
||||||
@ -58,15 +47,8 @@ import com.alibaba.csp.sentinel.slots.system.SystemRule;
|
|||||||
import com.alibaba.csp.sentinel.transport.config.TransportConfig;
|
import com.alibaba.csp.sentinel.transport.config.TransportConfig;
|
||||||
import com.alibaba.csp.sentinel.util.AppNameUtil;
|
import com.alibaba.csp.sentinel.util.AppNameUtil;
|
||||||
|
|
||||||
import com.fasterxml.jackson.core.JsonParser;
|
|
||||||
import com.fasterxml.jackson.core.Version;
|
|
||||||
import com.fasterxml.jackson.databind.DeserializationContext;
|
|
||||||
import com.fasterxml.jackson.databind.DeserializationFeature;
|
import com.fasterxml.jackson.databind.DeserializationFeature;
|
||||||
import com.fasterxml.jackson.databind.JsonNode;
|
|
||||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
|
|
||||||
import com.fasterxml.jackson.databind.module.SimpleModule;
|
|
||||||
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
||||||
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
|
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -170,6 +152,7 @@ public class SentinelAutoConfiguration {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
|
@ConditionalOnMissingBean
|
||||||
public SentinelDataSourceHandler sentinelDataSourceHandler(
|
public SentinelDataSourceHandler sentinelDataSourceHandler(
|
||||||
DefaultListableBeanFactory beanFactory, SentinelProperties sentinelProperties,
|
DefaultListableBeanFactory beanFactory, SentinelProperties sentinelProperties,
|
||||||
Environment env) {
|
Environment env) {
|
||||||
@ -180,41 +163,6 @@ public class SentinelAutoConfiguration {
|
|||||||
@Configuration
|
@Configuration
|
||||||
protected static class SentinelConverterConfiguration {
|
protected static class SentinelConverterConfiguration {
|
||||||
|
|
||||||
static class ApiPredicateItemDeserializer
|
|
||||||
extends StdDeserializer<ApiPredicateItem> {
|
|
||||||
private Map<String, Class<? extends ApiPredicateItem>> registry = new HashMap<String, Class<? extends ApiPredicateItem>>();
|
|
||||||
|
|
||||||
ApiPredicateItemDeserializer() {
|
|
||||||
super(ApiPredicateItem.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
void registerApiPredicateItem(String uniqueAttribute,
|
|
||||||
Class<? extends ApiPredicateItem> apiPredicateItemClass) {
|
|
||||||
registry.put(uniqueAttribute, apiPredicateItemClass);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public ApiPredicateItem deserialize(JsonParser jp,
|
|
||||||
DeserializationContext ctxt) throws IOException {
|
|
||||||
ObjectMapper mapper = (ObjectMapper) jp.getCodec();
|
|
||||||
ObjectNode root = mapper.readTree(jp);
|
|
||||||
Class<? extends ApiPredicateItem> apiPredicateItemClass = null;
|
|
||||||
Iterator<Entry<String, JsonNode>> elementsIterator = root.fields();
|
|
||||||
while (elementsIterator.hasNext()) {
|
|
||||||
Entry<String, JsonNode> element = elementsIterator.next();
|
|
||||||
String name = element.getKey();
|
|
||||||
if (registry.containsKey(name)) {
|
|
||||||
apiPredicateItemClass = registry.get(name);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (apiPredicateItemClass == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return mapper.readValue(root.toString(), apiPredicateItemClass);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Configuration
|
@Configuration
|
||||||
protected static class SentinelJsonConfiguration {
|
protected static class SentinelJsonConfiguration {
|
||||||
|
|
||||||
@ -223,17 +171,6 @@ public class SentinelAutoConfiguration {
|
|||||||
public SentinelJsonConfiguration() {
|
public SentinelJsonConfiguration() {
|
||||||
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,
|
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,
|
||||||
false);
|
false);
|
||||||
|
|
||||||
ApiPredicateItemDeserializer deserializer = new ApiPredicateItemDeserializer();
|
|
||||||
deserializer.registerApiPredicateItem("pattern",
|
|
||||||
ApiPathPredicateItem.class);
|
|
||||||
deserializer.registerApiPredicateItem("items",
|
|
||||||
ApiPredicateGroupItem.class);
|
|
||||||
SimpleModule module = new SimpleModule(
|
|
||||||
"PolymorphicApiPredicateItemDeserializerModule",
|
|
||||||
new Version(1, 0, 0, null));
|
|
||||||
module.addDeserializer(ApiPredicateItem.class, deserializer);
|
|
||||||
objectMapper.registerModule(module);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Bean("sentinel-json-flow-converter")
|
@Bean("sentinel-json-flow-converter")
|
||||||
@ -261,15 +198,6 @@ public class SentinelAutoConfiguration {
|
|||||||
return new JsonConverter(objectMapper, ParamFlowRule.class);
|
return new JsonConverter(objectMapper, ParamFlowRule.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Bean("sentinel-json-gw-flow-converter")
|
|
||||||
public JsonConverter jsonGatewayFlowConverter() {
|
|
||||||
return new JsonConverter(objectMapper, GatewayFlowRule.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Bean("sentinel-json-gw-api-group-converter")
|
|
||||||
public JsonConverter jsonApiConverter() {
|
|
||||||
return new JsonConverter(objectMapper, ApiDefinition.class);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ConditionalOnClass(XmlMapper.class)
|
@ConditionalOnClass(XmlMapper.class)
|
||||||
@ -281,16 +209,6 @@ public class SentinelAutoConfiguration {
|
|||||||
public SentinelXmlConfiguration() {
|
public SentinelXmlConfiguration() {
|
||||||
xmlMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,
|
xmlMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,
|
||||||
false);
|
false);
|
||||||
ApiPredicateItemDeserializer deserializer = new ApiPredicateItemDeserializer();
|
|
||||||
deserializer.registerApiPredicateItem("pattern",
|
|
||||||
ApiPathPredicateItem.class);
|
|
||||||
deserializer.registerApiPredicateItem("items",
|
|
||||||
ApiPredicateGroupItem.class);
|
|
||||||
SimpleModule module = new SimpleModule(
|
|
||||||
"PolymorphicGatewayDeserializerModule",
|
|
||||||
new Version(1, 0, 0, null));
|
|
||||||
module.addDeserializer(ApiPredicateItem.class, deserializer);
|
|
||||||
xmlMapper.registerModule(module);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Bean("sentinel-xml-flow-converter")
|
@Bean("sentinel-xml-flow-converter")
|
||||||
@ -318,16 +236,6 @@ public class SentinelAutoConfiguration {
|
|||||||
return new XmlConverter(xmlMapper, ParamFlowRule.class);
|
return new XmlConverter(xmlMapper, ParamFlowRule.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Bean("sentinel-xml-gw-flow-converter")
|
|
||||||
public XmlConverter xmlGatewayFlowConverter() {
|
|
||||||
return new XmlConverter(xmlMapper, GatewayFlowRule.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Bean("sentinel-xml-gw-api-group-converter")
|
|
||||||
public XmlConverter xmlApiConverter() {
|
|
||||||
return new XmlConverter(xmlMapper, ApiDefinition.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user