matecloud icon indicating copy to clipboard operation
matecloud copied to clipboard

🔥MateCloud是一款基于Spring Cloud Alibaba的微服务架构。目前已经整合Spring Boot 2.7.0、 Spring Cloud 2021、Spring Cloud Alibaba 2021、Spring Security Oauth2、Feign、Dubbo、JetCache、RocketMQ等,支持多...

Results 19 matecloud issues
Sort by recently updated
recently updated
newest added

限流、熔断统一处理类 WebfluxHandler 不生效 `WebfluxHandler.java 44 line` ```java /** * 限流、熔断统一处理类 */ @Configuration @ConditionalOnClass(ServerResponse.class) public static class WebfluxHandler { @Bean public BlockRequestHandler webfluxBlockExceptionHandler() { return (exchange, t) -> ServerResponse.status(HttpStatus.TOO_MANY_REQUESTS) .contentType(MediaType.APPLICATION_JSON) .body(BodyInserters.fromValue(Result.fail(t.getMessage())));...

gateway模块动态路由的实现方式似乎没有删除废弃路由的逻辑。我做了如下改造,不知道是否可行? ``` package com.example.gateway.config.route; import com.alibaba.fastjson.JSONObject; import com.alibaba.nacos.api.NacosFactory; import com.alibaba.nacos.api.config.ConfigService; import com.alibaba.nacos.api.config.listener.Listener; import com.alibaba.nacos.api.exception.NacosException; import com.example.gateway.config.NacosGatewayProperties; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang.StringUtils; import org.springframework.cloud.gateway.event.RefreshRoutesEvent; import org.springframework.cloud.gateway.route.RouteDefinition; import org.springframework.cloud.gateway.route.RouteDefinitionRepository; import org.springframework.context.ApplicationEventPublisher; import org.springframework.context.ApplicationEventPublisherAware;...

Bumps [cn.hutool:hutool-core](https://github.com/dromara/hutool) from 5.8.19 to 5.8.24. Release notes Sourced from cn.hutool:hutool-core's releases. 5.8.24(2023-12-23) 🐣新特性 【cache 】 Cache增加get重载,可自定义超时时间(issue#I8G0DL@Gitee) 【cache 】 JWT#sign增加重载,可选是否增加默认的typ参数(issue#3386@Github) 【db 】 增加识别OpenGauss的驱动类(issue#I8K6C0@Gitee) 【core 】 修复CharSequenceUtil注释和引用,避免循环引用 【extra 】 SpringUtil增加getProperty重载(pr#1122@Gitee) 【core...

dependencies

Bumps [org.elasticsearch:elasticsearch](https://github.com/elastic/elasticsearch) from 7.17.8 to 7.17.14. Release notes Sourced from org.elasticsearch:elasticsearch's releases. Elasticsearch 7.17.14 Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/guide/en/elasticsearch/reference/7.17/release-notes-7.17.14.html Elasticsearch 7.17.13 Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/guide/en/elasticsearch/reference/7.17/release-notes-7.17.13.html Elasticsearch 7.17.12 Downloads: https://elastic.co/downloads/elasticsearch...

dependencies

Hi, we are a research group to help developers build secure applications. We designed a cryptographic misuse detector on Java language(Our main concern is the secure implementation and use of...

修改COLUMN_NAME_NOT_INSERT注释

修改了用户表初始化时的真名字段重复情况。

I tried to run mate-gateway but received error like this ![x](https://github.com/user-attachments/assets/556faeb2-1d2d-4e71-8173-3e21d34e4650) Error from initRoute() of DynamicRouteInit, because content = null ![Screenshot 2024-09-12 at 11 56 00](https://github.com/user-attachments/assets/4de5c41a-a18b-41b6-bae5-1450cc69b18f) Can you help?