vue 脚手架环境搭建
摘要:1.安装node.js #执行完,在系统的环境变量,增加path:D:\Program Files\node_global npm config set prefix "D:\Program Files\node_global" npm config set cache "D:\Program Fi
阅读全文
posted @
2022-01-23 21:13
biind
阅读(59)
推荐(0) 编辑
dokcer Dockerfile生成jdk的镜像
摘要:#配置镜像加速vi /etc/docker/daemon.json{“registry-mirrors: ["https://docker.mirors.ustc.edu.cn"]} #安装centos7docker run -it --name=mycentos centos:7 /bin/bas
阅读全文
posted @
2022-01-23 15:50
biind
阅读(317)
推荐(0) 编辑
docker 备份与迁移
摘要:#docker容器保存为镜像docker commit mysql mysql20220123docker images 可查看刚刚保存的镜像 docker stop mysqldocker rm mysqldocker run -id --name mysql -p 3306:3306 -e MY
阅读全文
posted @
2022-01-23 11:16
biind
阅读(53)
推荐(0) 编辑
docker 基本使用命令
摘要:前提:linux安装 + docker安装,参考地址; linux 安装docker和mysql - biind - 博客园 (cnblogs.com) 目录: 1.docker基本使用命令 2.docker安装mysql + tomcat + nginx 1.docker基本使用命令 #查询镜像
阅读全文
posted @
2022-01-23 07:46
biind
阅读(78)
推荐(0) 编辑
ES6 基本使用
摘要:1.let const 声明变量 let i = 1; //不可重复声明,不变量提升 const j = 100; //只读 var k = 20; console.log(i,j,k) 2.对象优化 let person = {id:1,name:'jack'} let peson2 = Obje
阅读全文
posted @
2022-01-22 11:11
biind
阅读(40)
推荐(0) 编辑
linux ftp安装(与windows传输文件)
摘要:1.linux安装ftp 2.windows安装:FileZilla 客户端 - FileZilla中文网 1.linux安装ftp #搜索可用的软件包yum list | grep ftp #安装yum install vsftpd #开启ftp服务service vsftpd start 看下是
阅读全文
posted @
2022-01-21 21:33
biind
阅读(245)
推荐(0) 编辑
linux 安装
摘要:1.virtualBox 下载地址: Downloads – Oracle VM VirtualBox 2.centOS7 下载地址: Index of /centos/7.9.2009/isos/x86_64/ (163.com) CentOS Mirrors List 3.安装 a.安装virt
阅读全文
posted @
2022-01-19 22:05
biind
阅读(39)
推荐(0) 编辑
springboot springcloud 配置中心
摘要:1.服务器端 2.客户端 1.服务器端 1.依赖+配置+启动注解 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </depen
阅读全文
posted @
2022-01-16 18:50
biind
阅读(427)
推荐(0) 编辑
springboot springcloud zuul 过滤器
摘要:1.继承类:ZuulFilter 2.丢失请求头:Authorization 3.转发请求头:Authorization 4.使用场景:验证权限 1.继承类:ZuulFilter package com.ligy.school.zuul.filter; import com.netflix.zuul
阅读全文
posted @
2022-01-16 08:40
biind
阅读(213)
推荐(0) 编辑
springboot springcloud zuul 网关入门
摘要:1.配置 2.使用 1.配置 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-zuul</artifactId></dependency> main函
阅读全文
posted @
2022-01-13 23:01
biind
阅读(126)
推荐(0) 编辑
maven nexus 搭建私服(二)
摘要:nexus版本:nexus-3.37.3-02-win64,在2.x的nexus上面,不适用,不过原理一样,就配置不一样而已 1.配置setting.xml 2.上传jar包 (cmd命令) 3.上传jar包(pom文件,在idea使用mvn插件上传) 4.上传到自己创建的仓库 1.配置settin
阅读全文
posted @
2022-01-12 20:23
biind
阅读(94)
推荐(0) 编辑
maven nexus 搭建私服(一)
摘要:2.x和3.x的配置,不一样,不过原理是一样的 1.下载安装 2.x下载地址:Download Archives - Repository Manager 2 (sonatype.com) 3.x下载地址:Download (sonatype.com) 2.启动 3.创建自己的私服 1.下载安装 2
阅读全文
posted @
2022-01-12 20:19
biind
阅读(52)
推荐(0) 编辑
springboot springcloud eureka 熔断器
摘要:1.接口+实现类+注解: @FeignClient(value = "eurekademo2", fallback = Demo2ServiceImpl.class) 2.打开熔断器: 修改配置文件:application.propertiesfeign.hystrix.enabled=true p
阅读全文
posted @
2022-01-09 22:34
biind
阅读(173)
推荐(0) 编辑
springboot springcloud eureka 入门
摘要:1.eureka服务器端 2.eureka客户端 3.客户端间的通信 1.eureka服务器端 1.引入依赖 2.eureka配置 3.启动,加注解 4.浏览器打开: localhost:6868/ <?xml version="1.0" encoding="UTF-8"?> <project xm
阅读全文
posted @
2022-01-09 16:53
biind
阅读(124)
推荐(0) 编辑
java rabbitmq
摘要:1.安装rabbitmq 2.入门程序 一 安装rabbitmq 下载地址:Installing on Windows — Rabbit 安装完本地访问:http://localhost:15672/ 登录:guest guest 二 入门程序 <?xml version="1.0" encodin
阅读全文
posted @
2022-01-08 21:56
biind
阅读(73)
推荐(0) 编辑
javaweb servlet filter
摘要:1.创建javaweb 2.配置tomcat 3.servlet 5.filter
阅读全文
posted @
2022-01-08 11:34
biind
阅读(17)
推荐(0) 编辑
java jvm调优
摘要:1.jvisualvm 2.arthas 一 jvisualvm JDK工具: C:\Program Files\Java\jdk1.8.0_131\bin 二 arthas 下载:https://github.com/alibaba/arthas/releases 相关命令: 启动:java -j
阅读全文
posted @
2022-01-03 17:05
biind
阅读(33)
推荐(0) 编辑
java 字符流
摘要:1.FileReader 2.FileWriter 3.复制文件 package com.ligy.studymvc.main3; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.File
阅读全文
posted @
2022-01-03 08:22
biind
阅读(24)
推荐(0) 编辑
java 字节流
摘要:1. FileOutputStream 2. FileInputStream 3. 复制文件 package com.ligy.studymvc.main2; import java.io.FileInputStream; import java.io.FileOutputStream; impor
阅读全文
posted @
2022-01-03 08:10
biind
阅读(24)
推荐(0) 编辑
java 泛型
摘要:1.泛型类 2.泛型接口 3.泛型方法 4.泛型集合 5.泛型通配符:? package com.ligy.studymvc; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.Spring
阅读全文
posted @
2022-01-01 10:34
biind
阅读(38)
推荐(0) 编辑
java 集合
摘要:1.集合框架 2.例子 package com.ligy.studymvc; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; import java.uti
阅读全文
posted @
2022-01-01 09:20
biind
阅读(42)
推荐(0) 编辑