- 博客(26)
- 资源 (3)
- 收藏
- 关注
原创 jquery发送ajax请求
$.ajax({ type: "get",// get或者post url: "/index?a=1&b=2",// 请求的url地址,get请求在url后面追加参数 data: {},//请求的参数,如果是post请求就在data中写json格式的键值对 dataType: "json",//json写了jquery会帮我们转换成数组或者对象 他已经用JSON.parse弄好了 ...
2022-03-18 09:54:03
899
原创 三、配置hive
进入hive目录[root@master hive]# cd /usr/cstor/hive进入conf目录[root@master hive]# cd conf/复制文件hive-env.sh.template[root@master conf]# cd hive-env.sh.template hive-env.sh编辑配置文件 hive-env.sh把文件分发给slave1和slave2[root@master hive]# scp -r /u...
2021-12-21 14:10:54
908
原创 四、配置spark
进入spark的conf目录[root@master conf]#cd /usr/cstor/spark/conf复制文件[root@master conf]# cp slaves.template slaves编辑配置文件,把文件里面的localhost删除[root@master conf]# vim slavesslave1slave2复制文件[root@master conf]# cpspark-env.sh.template spark-...
2021-12-14 16:31:03
1685
原创 二、Hbase配置步骤
进入hbase目录[root@master hbase]# cd /usr/cstor/hbase查看下面的文件:[root@master hbase]# lsCHANGES.txt LEGAL LICENSE.txt NOTICE.txt README.txt bin conf docs hbase-webapps lib logs进入conf配置文件信息[root@master hbase]# cd conf/[root@master conf...
2021-12-14 15:45:35
1560
原创 Git的使用
设置用户名和邮箱Administrator@wangGangQiang MINGW64 /d/Environment/GIt/.git (GIT_DIR!)$ git config --global user.name "wanggangqiang" #设置用户名Administrator@wangGangQiang MINGW64 /d/Environment/GIt/.git (GIT_DIR!)$ git config --global user.email 1207669650
2021-12-11 20:51:49
458
原创 GIt建立自己的分支
建立一个文件夹名字为wanggq,进入这个文件夹中,右键在这里打开git bash最后一步clone成功就能看到自己的分支上面的项目就下载到本地了
2021-12-07 20:43:32
236
原创 Linux(Centos7) 安装redis
1、使用xftp把下载的redis-5.0.2.tar.gz传送到linux下的/home目录中2、移动redis-5.0.2.tar.gz 到/opt中,并且解压redis-5.0.2.tar.gz到/opt下的目录中3、进入解压后的文件,可以看到redis.conf文件4、基本的环境安装[root@localhost redis-5.0.2]# yum install gcc-c++查看gcc 版本信息[root@localhost redis-5...
2021-12-05 17:56:13
647
原创 Docker常用命令
#Docker常用命令帮助命令docker version #显示docker的版本信息docker info #显示docker的系统信息,包括镜像和容器的信息docker 命令 --help #万能命令#帮助文档的地址:Reference documentation | Docker Documentation镜像命令docker images 查看所有本地主机上的镜像[root@localhost ~]# docker im..
2021-12-05 15:16:41
89
原创 Centos7安装docker
1、使用xshell 连接上服务器2、卸载旧版本较旧的 Docker 版本称为 docker 或 docker-engine 。如果已安装这些程序,请卸载它们以及相关的依赖项。sudo yum install -y yum-utils \ device-mapper-persistent-data \ lvm23、使用官方源地址sudo yum-config-manager \ --add-repo \ https://download.docker.com/
2021-11-20 21:35:27
463
原创 dubbo框架集成spring,springmvc,mybatis框架
一、建一个接口工程,接口工程名字dubbo-interfacedubbo-interface接口工程的pom依赖<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="h.
2021-11-14 10:59:36
1545
原创 解决第一次使用zookeeper闪退问题
1、复制zookeeper-3.4.13\conf\zoo_sample.cfg文件,改名为zoo.cfg2、windows点击zookeeper-3.4.13\bin\zkServer.cmd命令启动zookeeper注册中心3、如果想要看闪退原因,可以在zookeeper-3.4.13\bin\zkServer.cmd倒数第二行加入pause,然后重新启动zookeeper注册中心...
2021-11-08 17:45:00
1397
原创 SpringMvc,Spring,Mybatis配置文件整合
jdbc.propertiesjdbc.driver=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/mybatis?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC;jdbc.username=rootjdbc.password=123log4j.propertieslog4j
2021-11-06 14:31:20
91
原创 Vue的Axios异步通信
<!DOCTYPE html><html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml"><head> <meta charset="UTF-8"> <title>Title</title> <script src="js/vue.js"></script> <script src="https://unpkg.
2021-11-06 14:19:22
60
原创 Vue的单选按钮语法
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <script src="js/vue.js"></script></head><body><div id="in1"> <input value="男" type=.
2021-11-06 13:15:09
175
原创 Vue的for循环和if:else-if;else:语法
Vue的for循环和if:else-if;else:语法<!DOCTYPE html><html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml" xmlns:v-on="http://www.w3.org/1999/xhtml" xmlns:v-for="http://www.w3.org/1999/xhtml"><head> <meta charset="UTF-
2021-11-06 13:12:49
326
原创 Vue单击事件语法
单击右键弹出提示框<!DOCTYPE html><html lang="en" xmlns:v-on="http://www.w3.org/1999/xhtml"><head> <meta charset="UTF-8"> <title>Title</title> <script src="js/vue.js"></script></head><body&g
2021-11-06 13:10:01
107
原创 Vue的template模板语法
<!DOCTYPE html><html lang="en" ><head> <meta charset="UTF-8"> <title>Title</title></head><body><ul id="div1"> <qinjiang v-for="item in items" v-bind:qin="item"></qinjiang>.
2021-11-06 13:07:49
232
原创 Eureka服务注册与发现和集群环境搭建
1、搭建第一个Eureka注册中心,项目名为eureka-server-7001导入pom文件<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.o
2021-11-05 15:46:00
115
原创 git托管application.yaml配置文件
一:本地服务端配置1、把git上的代码用一个中转器转送到本地,项目名为springcloud-config-server-3344<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocat
2021-11-05 14:48:03
477
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人