jmilktea

Results 6 issues of jmilktea

I have defined an interface and want to convert the property value of the class into an array: ``` public interface ToArray { Object[] toArray(T data); } ``` as below...

question

### Use case It is troublesome to define an interface for each conversion. Is there a shorthand way to write it? Simple as this: Car car = new Car(); CarDto...

closing-when-no-response

Can't get value in different streams eg: Setting parameters using webfilter ``` @Component public class MdcWebFilter implements WebFilter { @Override public Mono filter(ServerWebExchange serverWebExchange, WebFilterChain webFilterChain) { return webFilterChain.filter(serverWebExchange).subscriberContext(ctx ->...

I think this is a mistake and the error log should be printed, otherwise it will make it difficult to troubleshoot the problem. I encountered this problem, and if I...

waiting-for-triage

- [x] 我已经在 [issues](https://github.com/alibaba/arthas/issues) 里搜索,没有重复的issue。 ### 环境信息 * `arthas-boot.jar` 或者 `as.sh` 的版本: 3.5.0 * Arthas 版本: 3.5.0 * 操作系统版本: xxx * 目标进程的JVM版本: jdk8 * 执行`arthas-boot`的版本: xxx ### 重现问题的步骤 使用arthas tunnel,应用使用arthas-spring-boot-starter...

``` @FeignClient(name = "my-service") public interface MyClient { @PostMapping(consumes = "application/json", headers = {"Content-Type=application/json;charset=utf-8"}) Response getApi(URI uri, @RequestBody String reqBody); } ``` In my scenario, the URL is changing, so...