摘要:
MyPerf4J 轻量级、功能强大、性能优越的 Java 性能监控工具 AJ-Captcha 验证码(滑块验证和文字验证) 阅读全文
摘要:
$(".article-content-wrap").unbind("copy").bind("copy", (function(e) { e.preventDefault() e.stopPropagation() event.clipboardData.setData("text/plain", 阅读全文
摘要:
profiles标签添加 <profile> <id>test</id> <repositories> <repository> <id>private-nexus</id> <url>http://192.168.10.2:8081/repository/maven-public/</url> < 阅读全文
摘要:
有时候会根据需要,区分不同的vue项目,这样要加一个后缀,不加后缀,访问是http://localhost/,加一个后缀,app,访问路径就是http://localhost/app 一、vue工程配置: 1.vue.config.js publicPath 配置为 /app/ 2.route配置b 阅读全文
摘要:
运行 yum repolist all | grep mysql 出现 https://download.docker.com/linux/centos/7/x86_64/stable/repodata/repomd.xml: [Errno 14] curl#7 - "Failed to conne 阅读全文
摘要:
1.下载yum源 https://dev.mysql.com/get/mysql80-community-release-el7-1.noarch.rpm 2.安装 yum install mysql80-community-release-el7-1.noarch.rpm 3.列出可安装的版本 y 阅读全文
摘要:
1.拉取镜像 docker pull jetbrains/teamcity-server 2.运行,挂载数据和日志目录,映射端口即可 docker run --name teamcity-server-instance \ -v <path-to-data-directory>:/data/team 阅读全文
摘要:
pipeline { agent any tools { jdk 'jdk8' } environment { harborUser = "admin" harborPassword = "Harbor12345" harborAddress = "harbor地址" harborRepo = "仓 阅读全文
摘要:
使用的若依版本为3.8.7 本地父工程使用的springboot版本为2.3.4 注册中心使用了nacos2.0.2 1.将ruoyi工程复制到父工程文件夹下 2.修改若依根pom的springboot版本为2.3.4 <!-- SpringBoot的依赖配置--> <dependency> <gr 阅读全文
摘要:
有两种方式 1.基本导出 export const name="zhangsan" export function sum(a,b){ return a+b; } 对应的基本导入 import { name,sum } from './test.js' 直接使用变量名或者函数 或者别名 import 阅读全文