上一页 1 2 3 4 5 6 7 8 ··· 38 下一页
摘要: 1, 安装依赖环境 yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz 阅读全文
posted @ 2022-06-09 20:10 Bonnie_ξ 阅读(693) 评论(0) 推荐(0) 编辑
摘要: 准备材料:mysql-5.7.35-1.el7.x86_64.rpm-bundle.tar wget https://downloads.mysql.com/archives/get/p/23/file/mysql-5.7.35-1.el7.x86_64.rpm-bundle.tar 1.先卸载系统 阅读全文
posted @ 2022-06-09 19:49 Bonnie_ξ 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 一、自定义安装JDK 安装包百度云有 JDK1.8 -- jdk-8u162-linux-x64.rpm链接:https://pan.baidu.com/s/1HEfYhFQN25zM_WFyHanrYA 提取码:ss46 JDK1.7 -- jdk-7u80-linux-x64.rpm 链接:ht 阅读全文
posted @ 2022-06-09 19:25 Bonnie_ξ 阅读(167) 评论(0) 推荐(0) 编辑
摘要: DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4 阅读全文
posted @ 2022-05-31 20:52 Bonnie_ξ 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 1.UI对象识别器Selector 用法d(text='Clock', className='android.widget.TextView') 支持以下参数,详细信息可参考UiSelector Java doc text, textContains, textMatches, textStarts 阅读全文
posted @ 2022-05-17 20:29 Bonnie_ξ 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 目前开发的SpringBoot项目在启动的时候需要预加载一些资源。而如何实现启动过程中执行代码,或启动成功后执行,是有很多种方式可以选择,我们可以在static代码块中实现,也可以在构造方法里实现,也可以使用@PostConstruct注解实现。 当然也可以去实现Spring的Application 阅读全文
posted @ 2022-05-07 10:37 Bonnie_ξ 阅读(60) 评论(0) 推荐(0) 编辑
摘要: lyzx1,19 lyzx2,20 lyzx3,21 lyzx4,22 lyzx5,23 lyzx6,24 lyzx7,25 托塔天王 lyzx7,25,哈哈 package com.zxwa.live.process.test import org.apache.spark.rdd.RDD imp 阅读全文
posted @ 2022-05-06 21:22 Bonnie_ξ 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 1、例子1:按照value进行降序排序 def sortBy[K]( f: (T) => K, ascending: Boolean = true, // 默认为正序排列,从小到大,false:倒序 numPartitions: Int = this.partitions.length) (impl 阅读全文
posted @ 2022-04-29 17:22 Bonnie_ξ 阅读(535) 评论(0) 推荐(0) 编辑
摘要: join 函数定义 def join[W](other: RDD[(K, W)]): RDD[(K, (V, W))] def join[W](other: RDD[(K, W)], numPartitions: Int): RDD[(K, (V, W))] def join[W](other: R 阅读全文
posted @ 2022-04-28 11:41 Bonnie_ξ 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 所谓的偏函数是指 被包在花括号内没有match的一组case语句 , 偏函数是PartialFunction[A, B]类型的的一个实例对 象, 其中A代表输入参数类型, B代表返回结果类型. 格式 val 对象名 = { //这对大括号及其内部的一组case语句, 就组成了一个偏函数. case 阅读全文
posted @ 2022-04-27 15:57 Bonnie_ξ 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 38 下一页