修改主机名hostnamectlset-hostnamemaster00hostnamectlset-hostnamenode1hostnamectlset-hostnamenode2所有集群主机都改好,主机名自定义修改/etc/hosts文件,所有主机都修改192.168.5.100master00192.168.5.101node01192.168.5.102node02swapoff-ase
分类:
其他好文 时间:
2020-06-11 18:15:21
阅读次数:
51
report zjty_demo_08. tables: zjty_eng. type-pools: icon, slis. class zcl_alv_grid definition deferred. data: ok_code type sy-ucomm, begin of gs_englis ...
分类:
其他好文 时间:
2020-06-11 16:49:14
阅读次数:
98
vue中可能会遇到两个没有关系的组件之间的通信。 npm install vue-bus 引入 import Vue from 'vue'; import bus from 'vue-bus'; Vue.use(bus); 创建发送数据 this.$bus.emit("eventName",data ...
分类:
其他好文 时间:
2020-06-11 16:27:48
阅读次数:
123
我们知道:在浏览器环境中,常见的 macro task 有 setTimeout、MessageChannel、postMessage、setImmediate。而常见的 micro task 有 MutationObsever 和 Promise.then。 Vue中对于 macro task 的 ...
分类:
其他好文 时间:
2020-06-11 13:34:38
阅读次数:
70
setTimeout基本用法 setTimeout(code,millisec) setTimeout函数接受两个参数,第一个参数code是将要推迟执行的函数名或者一段代码,第二个参数millisec是推迟执行的毫秒数。 例如: setTimeout('console.log(2)',100);// ...
分类:
其他好文 时间:
2020-06-11 00:38:09
阅读次数:
55
现在是挖个坑,实验阶段 --Domain --OrderAggregateRoot --Order.cs --OrderItem.cs --ValueObject --Event public class Order : AggregateRoot<Guid> { #region 属性 /// <s ...
分类:
其他好文 时间:
2020-06-10 22:41:48
阅读次数:
81
Node.js 所有的异步 I/O 操作在完成时都会发送一个事件到事件队列。 Node.js 里面的许多对象都会分发事件:一个 net.Server 对象会在每次有新连接时触发一个事件, 一个 fs.readStream 对象会在文件被打开的时候触发一个事件。 所有这些产生事件的对象都是 event ...
分类:
Web程序 时间:
2020-06-10 19:30:16
阅读次数:
68
Event Loop即事件循环,是解决javaScript单线程运行阻塞的一种机制。 同步和异步任务(ajax网络请求;setTimeout 定时函数等)分别进入不同的执行"场所",同步的进入主线程,异步的进入Event Table并注册函数。当指定的事情完成时,Event Table会将这个函数移 ...
分类:
Web程序 时间:
2020-06-10 17:16:36
阅读次数:
66
组件注册 @Configuration、@Bean注册组件 先写一个bean public class Person { private String name; private Integer age; public Person() { } public Person(String name, ...
分类:
编程语言 时间:
2020-06-10 11:23:46
阅读次数:
69
禁用FameworkElement中的RequestBringIntoViewEvent事件即可, Xaml: <ListBox > <ListBox.ItemContainerStyle> <Style TargetType="ListBoxItem"> <EventSetter Event="R ...