11 2020 档案
摘要:尝试过各种方法,总结出以下方法是最简单且不会出错的修改mysql密码。 此方法目前只在mysql 8.0.18版本试验过. 1.安装mysql,官网下载。 2.将下载的文件解压,Bin目录加入环境变量。 3.在cmd下执行下列命令 net stop mysql mysqld --shared-mem
阅读全文
摘要:Dependencies Necessary dependencies 必要的依赖 JDK 1.6+ 1 Default dependencies 默认依赖 use mvn dependency:tree > dep.log command to analysis,Dubbo default dep
阅读全文
摘要:The most common way to use Dubbo is to run it in Spring framework. The following content will guide you to develop a Dubbo application with Spring fra
阅读全文
摘要:Spring configuration of local service local.xml: <bean id=“xxxService” class=“com.xxx.XxxServiceImpl” /> <bean id=“xxxAction” class=“com.xxx.XxxAction
阅读全文
摘要:1:HashMap 的数据结构? A:哈希表结构(链表散列:数组+链表)实现,结合数组和链表的优点。当链表长度超过 8 时,链表转换为红黑树。 transientNode\[\]table; 2:HashMap 的工作原理? HashMap 底层是 hash 数组和单向链表实现,数组中的每个元素都是
阅读全文
摘要:SPECIFICATION OF NODE'S ROLE(节点定义) NodeRole Spec Provider The provider exposes remote services 提供者暴露远端服务 Consumer The consumer calls the remote servic
阅读全文