Open jieqiuming opened 5 years ago
这几年微服务架构很热,公司项目也大量使用dubbo等服务发现和注册开源组件,基于Dubbo自研api网关,提供功能比较全的服务治理平台,对于开源的微服务架构实践,看了这篇文章《微服务杂谈》后,感觉很受启发,还是要结合业务复杂度和团队情况分析,是否有必要采用微服务架构。
1.fastjson List转JSONArray
List<T> list = new ArrayList<T>();
JSONArray array= JSONArray.parseArray(JSON.toJSONString(list));
2.fastjson JSONArray转List
JSONArray array = new JSONArray();
List<EventColAttr> list = JSONObject.parseArray(array.toJSONString(), EventColAttr.class);
3.fastjson 字符串转List
String str = "";
List<T> list = JSONObject.parseArray(str,T.class);
production ready code 湾区评论中提到这个词,看了原文,发现了作者很高产 https://ayende.com/blog/186849-A/production-ready-code-is-much-more-than-error-handling
https://mdnice.com/ 微信公众号排版工具,支持markdown语言编辑,生成不同主题的html代码
最近使用webuploader上传组件时,发现IE8浏览器上传后,springboot后台接口一直报"Could not find acceptable representation",经过搜索后发现使用produces=MediaType.TEXT_PLAIN_VALUE 的方法,返回值必须是String,参考链接如下: https://blog.csdn.net/yongbuyanqi88888/article/details/43939307
另外之前使用jquery.form.js插件时ie8环境下要使用ajaxform而不是ajaxsubmit,参考链接: https://blog.csdn.net/yongbuyanqi88888/article/details/43939307
参考链接: