拥有0000-未整理-等待研究标签的文章

【行业编码规范】《阿里巴巴Java开发手册(正式版)》发布! - 知乎

摘要: 阿里巴巴集团推出的是阿里巴巴近万名开发同学集体智慧的结晶,以开发视角为中心,详细列举如何开发更加高效、更加容错、更加有协作性,力求知其然,更知其不然,结合正反例,让Java开发者能够提升协作效率、提高代码质量。2017年开春之际,诚意献上重磅大礼:,首次公开阿里官方Java代码规范标准。这套Java统一规范标准将有助于提高行业编码规范化水平,帮助行业人员提高开发质量和效率、大大降低代码...
阅读全文

《阿里巴巴Java开发手册v1.4.0(详尽版)》更新,新增16条设计规约-云栖社区-阿里云

         2018.6.6日更新 阿里巴巴Java开发手册v1.4.0(详尽版)发布,新增16条设计规约。设计规约是根据阿里巴巴实际项目架构经验提炼而成,主要从UML图和架构设计原则来规定比较基础的软件设计理念,并且明确了超过什么样的阈值需要以什么样的方式来呈现设计思维。 点击下载《阿里巴巴Java开发手册》v1.4.0(详尽版):编码规范考试认证:IDE插件下载:...
阅读全文

Redis为什么是单线程,高并发快的3大原因详解 - 知乎

Redis的高并发和快速原因1.redis是基于内存的,内存的读写速度非常快;2.redis是单线程的,省去了很多上下文切换线程的时间;3.redis使用多路复用技术,可以处理并发的连接。非阻塞IO 内部实现采用epoll,采用了epoll+自己实现的简单的事件框架。epoll中的读、写、关闭、连接都转化成了事件,然后利用epoll的多路复用特性,绝不在io上浪费一点时间。下面重...
阅读全文

GitHub - alibaba/dubbo-doc-static: dubbo document static contents

dubbo document static contents=================================================================Copy of .HTML files @ .Key documents link: User Guide: Developer Guide: Dubbo FAQ: ...
阅读全文

GitHub - alibaba/dubbo-spring-boot-starter: Dubbo Spring Boot Starter

=======================================================================================================================================================================================================...
阅读全文

GitHub - alibaba/spring-boot-web-support: An support project for Spring Boot Web

springbootwebsupport===================================================An support project for Spring Boot WebDependencies & CompatibilityDependenciesCompatibilityJava1.7 +Servlet3.0 ...
阅读全文

GitHub - alibaba/spring-velocity-support: An support project of legacy velocity based on Spring Framework

springvelocitysupport===================================================An support project of legacy velocity based on Spring Framework, it is a base project of , and most code is forked from Sprin...
阅读全文

GitHub - alibaba/otter: 阿里巴巴分布式数据库同步系统(解决中美异地机房)

最新更新============================================= otter已在阿里云推出商业化版本 DTS支持阿里云RDS&DRDS的Binlog日志实时订阅,现推出首月0折体验,限时限量,环境搭建 & 打包=====================================================================...
阅读全文

GitHub - alibaba/velocity-spring-boot-project: A Spring Boot Starter for velocity including Spring's official and Alibaba's implementation , e.g, Layout , Tools supports.

Velocity Spring Boot Project=============================================================A Spring Boot Starter for velocity including Spring's official and Alibaba's implementation , e.g, Layout , ...
阅读全文

(3条消息)Sublime Text 2 文档内容每行首尾添加字符串 - 八热地狱 - CSDN博客

此插件的需求来源于以下类似要求: SQL语句:```SELECT U.ID, U.NAME, U.AGE, U.SEXFROM USER_INFO UWHERE U.NAME LIKE '%XXX%'ORDER BY U.AGE```以上SQL需要在java中执行:```buf.append("SELECT ");buf.append("U.ID, U.NA...
阅读全文