import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.hbase.*;import org.apache.hadoop.hbase.client.*;import org.apache.hadoop.hbase.ut ...
分类:
其他好文 时间:
2020-11-06 01:37:17
阅读次数:
15
git强制覆盖: git fetch --all git reset --hard origin/master git pullgit强制覆盖本地命令(单条执行): git fetch --all && git reset --hard origin/master && git pull ...
分类:
其他好文 时间:
2020-11-04 19:15:59
阅读次数:
26
一、概述 存储过程&函数,类似编程语言的方法 什么是方法? 完成特定功能的一组语句 方法的特点 1、可重用性 2、简化操作 二、存储过程【 Stored Procedures】: 一组预先编译好的SQL语句的集合,可理解批处理语句 提供给Java操作复杂的SQL逻辑将会变得困难 交给存储过程将减少J ...
分类:
数据库 时间:
2020-11-04 18:47:21
阅读次数:
27
##新学到的知识 echart图表的使用 表格内容过多,如何用省略号代替 mybatis bind标签的使用 mybatis choose标签的使用 ...
分类:
其他好文 时间:
2020-11-02 10:45:58
阅读次数:
37
前言 今天我们来简单说一下,SpringBoot对web项目的支持;主要讲一下,Thymeleaf知识。 我们已经知道Spring Boot提供了spring-boot-starter-web为Web开发予以支持,spring-boot-starter-web为我们提供了嵌入的Tomcat以及Spr ...
分类:
编程语言 时间:
2020-11-02 10:44:24
阅读次数:
39
/* A simple C program */ #include <stdio.h> int main () { printf("202083290312.\n"); printf("hello,C\n"); printf("I can be hard!"); return 0; getchar; ...
分类:
其他好文 时间:
2020-11-02 10:13:04
阅读次数:
23
#include <bits/stdc++.h> #include "opencv2/core.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/video.hpp" #include "opencv2/objdetect.hpp" #inc ...
分类:
其他好文 时间:
2020-11-02 10:01:48
阅读次数:
21
分享是价值的传递,喜欢就点个赞 引言 今天我们继续来深入的剖析类加载器的内容。上节课我们讲了类加载器的基本内容,没看过的小伙伴请加关注。今天我们继续。 什么是定义类加载器和初始化类加载器? 定义类加载器:假设我们的某一个类是由ExtClassLoader加载的,那么ExtClassLoader称为该 ...
分类:
其他好文 时间:
2020-11-01 10:35:29
阅读次数:
12
CentOS6.x系统中一直沿用的都是Python2.6.x(目前最新版本是python-2.6.6),有时不能满足某些应用生产环境和开发环境的需要,直接从yum官方仓库和epel中安装Python2.7(目前最新版本是python-2.7.12)似乎也是没有什么可能,除非使用更三方的软件源。Cen ...
分类:
编程语言 时间:
2020-11-01 10:18:35
阅读次数:
17
任务1 #include <stdio.h> int main() { int a=5,b=7,c=100,d,e,f; d=a/b*c; e=a*c/b; f=c/b*a; printf("d=%d,e=%d,f=%d",d,e,f); return 0; } 对应数学运算式分别是0*100;50 ...
分类:
其他好文 时间:
2020-11-01 10:04:28
阅读次数:
12