Dict.CN 在线词典, 英语学习, 在线翻译 ------------- MyGitee 朱秋贵内科诊所 My腾云code
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 41 下一页
摘要: 阅读全文
posted @ 2021-04-26 16:53 cn2024 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-26 09:44 cn2024 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-25 10:20 cn2024 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-24 15:04 cn2024 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-23 09:12 cn2024 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-22 09:31 cn2024 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 前言 在运行java的时候有时候想测试云运行时占用内存情况,这时候就需要使用测试工具查看了。在eclipse里面有 Eclipse Memory Analyzer tool(MAT)插件可以测试,而在idea中也有这么一个插件,就是JProfilerl。 下载安装 打开idea,进入设置界面 安装之 阅读全文
posted @ 2021-04-21 14:54 cn2024 阅读(1129) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-21 14:24 cn2024 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-21 11:55 cn2024 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 教程 1、线程组 线程组参数 2、Http请求 http请求参数 3、测试 汇总报告 阅读全文
posted @ 2021-04-20 18:08 cn2024 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-20 14:47 cn2024 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 实例 ######mysql主从###### ######mycat###### 1、server.xml ###schemas:TESTDB <user name="root" defaultAccount="true"> <property name="password">root</prope 阅读全文
posted @ 2021-04-20 14:32 cn2024 阅读(61) 评论(0) 推荐(0) 编辑
摘要: ZooInspector @echo offe: cd E:\tools\pro\JAVA\VM linux\ZK\ZooInspector\build start java -jar zookeeper-dev-ZooInspector.jar 阅读全文
posted @ 2021-04-17 21:09 cn2024 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-16 15:02 cn2024 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-16 09:59 cn2024 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-15 21:22 cn2024 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-15 21:20 cn2024 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-15 10:09 cn2024 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-14 15:37 cn2024 阅读(53) 评论(0) 推荐(0) 编辑
摘要: http://download.smartloli.org/ https://ke.smartloli.org/2.Install/2.Installing.html https://ke.smartloli.org/3.Manuals/1.Dashboard.html 3.1. 设置KE_HOME 阅读全文
posted @ 2021-04-14 10:54 cn2024 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1、 # 下载kafka [root@localhost kafka]# tar -xzf kafka_2.11-2.0.0.tgz[root@localhost kafka]# cd kafka_2.11-2.0.0[root@localhost kafka_2.11-2.0.0]# pwd/us 阅读全文
posted @ 2021-04-14 10:47 cn2024 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-14 09:21 cn2024 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-13 09:06 cn2024 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 文档 阅读全文
posted @ 2021-04-12 09:11 cn2024 阅读(42) 评论(0) 推荐(0) 编辑
摘要: join主要为让多线程按顺序执行 源码:wait-notify-synchronized public class Thread008 implements Runnable{ public static void main(String[] args){ //主线程调用t1.join 主线程阻塞且 阅读全文
posted @ 2021-04-08 09:34 cn2024 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 1、wait 使用说明 public class Thread001 { class Res{ public String userName; private char sex; private boolean flag; } class InputThread extends Thread{ Re 阅读全文
posted @ 2021-04-06 10:32 cn2024 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 当前线程变为阻塞(释锁) 放弃CPU执行 在同步代码块中使用且必须要通过对象.wait(this.wait) 释锁目的: 生产者写数据,防死锁 public class Thread002 { public static void main(String[] args) { new Thread00 阅读全文
posted @ 2021-04-06 00:52 cn2024 阅读(61) 评论(0) 推荐(0) 编辑
摘要: public class Thread001 { class Res{ public String userName; private char sex; } class InputThread extends Thread{ Res res; public InputThread(Res res) 阅读全文
posted @ 2021-04-04 03:01 cn2024 阅读(58) 评论(0) 推荐(0) 编辑
摘要: public class Thread001 { class Res{ public String userName; private char sex; } class InputThread extends Thread{ Res res; public InputThread(Res res) 阅读全文
posted @ 2021-04-03 21:11 cn2024 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 需要利用kafka发送txt或log文件,有两种方式:1.自己写程序;2.利用kafka自带脚本。 自己写程序: import org.apache.kafka.clients.producer.KafkaProducer; import org.apache.kafka.clients.produ 阅读全文
posted @ 2021-04-02 15:08 cn2024 阅读(222) 评论(0) 推荐(0) 编辑
摘要: Alink是基于Flink的机器学习算法平台,欢迎访问Alink的github获取下载链接及更多信息。 alibaba/Alink​github.com 也欢迎加入钉钉群进行交流。 Kafka是流式计算中重要的数据源,我分享一下在本机Windows上搭建Kafka的经验。 一、下载、安装Kafka 阅读全文
posted @ 2021-04-02 14:48 cn2024 阅读(290) 评论(0) 推荐(0) 编辑
摘要: window=kafka+zk 服务器 类别 物理 broker Topic Partition 1/n Partition Producer-->broker-->Consumer Group KafkaTemplate.send(Topic,msg) @KafkaListener(topics 阅读全文
posted @ 2021-04-02 14:43 cn2024 阅读(38) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_42601136/article/details/108806542 实例代码:SpringCloud+JPA-crud(ek+produce+feign+zl).zip 源代码提取码 ktvr 阅读全文
posted @ 2021-04-02 14:42 cn2024 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-01 09:50 cn2024 阅读(30) 评论(0) 推荐(0) 编辑
摘要: Synchronized自动 关键字,完毕或异常后自动释放 Lock(aqs) 手动 获、释锁 public class TickerThread4 implements Runnable { private int count=100; private Lock lock=new Reentran 阅读全文
posted @ 2021-04-01 09:45 cn2024 阅读(40) 评论(0) 推荐(0) 编辑
摘要: jconsole.exe 阅读全文
posted @ 2021-04-01 09:43 cn2024 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 多程,互需锁不释放 同时窗口1:先object锁,再this锁,票数-1窗口2:先this锁,再object锁,票数-1 public class TickerThread3 implements Runnable { private static int count=100; private Bo 阅读全文
posted @ 2021-03-30 10:36 cn2024 阅读(57) 评论(0) 推荐(0) 编辑
摘要: H:\BaiDu\黑马传智JavaEE57期 2019最新基础+就业+在职加薪\阶段5 3.微服务项目【学成在线】· Lombok 是一种 Java™ 实用工具,可用来帮助开发人员消除 Java 的冗长,尤其是对于简单的 Java 对象(POJO)。它通过注解实现这一目的。 https://www. 阅读全文
posted @ 2021-03-26 18:38 cn2024 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 两者区别: 1.首先synchronized是java内置关键字,在jvm层面,Lock是个java类; 2.synchronized无法判断是否获取锁的状态,Lock可以判断是否获取到锁; 3.synchronized会自动释放锁(a 线程执行完同步代码会释放锁 ;b 线程执行过程中发生异常会释放 阅读全文
posted @ 2021-03-26 18:10 cn2024 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 两者区别: 1.首先synchronized是java内置关键字,在jvm层面,Lock是个java类; 2.synchronized无法判断是否获取锁的状态,Lock可以判断是否获取到锁; 3.synchronized会自动释放锁(a 线程执行完同步代码会释放锁 ;b 线程执行过程中发生异常会释放 阅读全文
posted @ 2021-03-26 18:07 cn2024 阅读(82) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 41 下一页