大数据
课程安排 一、大数据概述 二、大数据处理架构Hadoop 三、分布式文件系统HDFS 四、分布式数据库HBase 五、MapReduce 六、Spark 七、IPythonNotebook运行PythonSpark程序 八、PythonSpark集成开发环境 九、PythonSpark决策树二分类与多分类 十、PythonSpark支持向量机 十一
Easter79 Easter79
3年前
springioc学习
springioc类图!(https://oscimg.oschina.net/oscnet/up1f3f48e7a24e818fcd4392d8ab50311b462.png)springioc关键接口:ResourceBeanDefinitionReaderBeanFactoryBeanDe
Easter79 Easter79
3年前
SpringBoot2.0 基础案例分类目录,附源码地址
本文源码GitHub:知了一笑https://gitee.com/cicadasmile/springbootbaseSpringBoot2基础文章分类1、入门基础SpringBoot2.0基础案例(01):环境搭建和RestFul风格接口(http
Stella981 Stella981
3年前
SpringBoot2.0 基础案例分类目录,附源码地址
本文源码GitHub:知了一笑https://gitee.com/cicadasmile/springbootbaseSpringBoot2基础文章分类1、入门基础SpringBoot2.0基础案例(01):环境搭建和RestFul风格接口(http
Stella981 Stella981
3年前
JetBrains ReSharper 快捷键
CtrlSpace代码完成CtrlShiftSpace代码完成CtrlAltSpace代码完成CtrlP显示参数信息AltInsert生成构造函数,属性,重载成员函数,实现接口CtrlAltJ生成if,try..catch,region块Ctrl/注释及取消
Stella981 Stella981
3年前
SpringBoot 集成Netty实现UDP Server
注:ApplicationRunner接口是在容器启动成功后的最后一步回调(类似开机自启动)。UDPServerpackagecom.vmware.vCenterEvent.netty;importio.netty.bootstrap.Bootstrap;importio.netty.ch
Stella981 Stella981
3年前
ArrayBlockingQueue 和LinkedBlockQueue
ArrayBlockingQueueArrayBlockingQueue是Java多线程常用的线程安全的一个集合,基于数组实现,继承自AbstractQueue,实现了BlockingQueue和Serializable接口。//先看看器内部的成员变量:privatestaticfinallongserialV
Stella981 Stella981
3年前
Linux获取网络信息的netstat命令参数和用法
netstat显示网络连接,路由表,接口状态,伪装连接,网络链路信息和组播成员组。\\\\总览SYNOPSISnetstat\address\_family\_options\\tcp|t\\udp|u\\raw|w\\listening|l\\all|a\\
Stella981 Stella981
3年前
Shiro源码分析
    在Shiro中,登录操作是由Subject的login()方法完成的,Subject是个接口,在Web环境中,实现类为WebDelegatingSubject,login方法从DeletatingSubject继承而来:publicvoidlogin(AuthenticationTokentoken)throwsAuthenti
Easter79 Easter79
3年前
Spring中ApplicationContext的事件机制
   ApplicationContext事件机制是观察者设计模式的实现,通过ApplicationEvent类和ApplicationListener接口,可以实现ApplicationContext事件处理。如果容器中有一个ApplicationListenerBean,每当ApplicationContext发布ApplicationEvent时,