coderDylan

Results 4 issues of coderDylan

motan目前可以和开源的sentinel、hystrix组件整合吗?后续是否有这方面的计划?

### Description ![Image_20230729215555](https://github.com/apache/shenyu/assets/15723098/ba92db87-2396-4429-a064-951cd69a4da1) ### Task List _No response_

status: volunteer wanted

I suggest you change your current package name. In the current form of package organization, it is easy to cause class loading conflicts. See dubbo and hessian-lite for example.

motan支持POJO作为参数的情况,例如: `User rename(User user, String name) throws Exception;` 通过定义Map作为参数,并指定POJO全限定名时,可以正常完成泛化调用,服务端反序列化正常的,代码如下: `CommonClient service = referer.getRef(); Map person = new HashMap(); person.put("name", "xxx"); person.put("id", 999); Request request = MotanClientUtil.buildRequest("com.weibo.motan.demo.service.MotanDemoService", "rename", "com.weibo.motan.demo.service.model.User,java.lang.String", new Object[]{person,"dinglang"},...