clay
-
注册激活Navicat全系产品的开源代码
编译后文件 navicat-keygen-for-x64.zip: https://n802.com/f/21259585-496073096-ce54c6 (访问密码:9197) navicat-keygen-for-x86.zip: https://n802.co…… -
jar 包静默运行
nohup java -jar /www/wwwroot/api.ebts.top/ebts-admin.jar>> /www/wwwroot/api.ebts.top/ebts.log 2>&1 & -
SQL 语言
SQL语言类型 DDL create....drop (创建删除数据库表) DML:insert....(增删改查语句) TCL:事务ACID:commit rollback DCL:数据控制语句 grant revork 授权 撤权…… -
java Object类
方法 toString hashCode equals getClass<?> 反射机制,架构使用 notify wait 理解 有扎实的java基础:jvm 并发编程 源码(Mybatis Spring redis Dpuble…… -
Vue使用scss
一. 安装scss依赖 npm install sass-loader --save-dev npm install node-sass --sava-dev 二. 修改webpack.base.conf.js的css配置 css: { sourceMap: tr…… -
vue 使用boostrap
首先使用npm下载jquery和boostrap依赖 npm install jquery bootstrap@3 popper.js --save bootstrap@3 指的是安装 Bootstrap 第三版,不加则默认版本4 一. 文件…… -
ubuntu 运行vgg相关配置
安装Python3.7 1.执行所有升级 sudo apt update sudo apt upgrade -y 2.安装编译Python源程序所需的包 sudo apt install build-essential -y sudo apt install…… -
Mybatis单表多级联查
菜单层次查询 entity菜单;类 public class Menu { // 菜单id private String id; // 父菜单id private String parentId; // 菜单名称 …… -
Nginx反向代理sprigboot–springboot域名绑定
需要绑定的域名的nginx配置文件 server { listen 80; server_name java.afterglow.fun; index index.php index.html index.htm default.php defau…… -
Vue Rotuter 4.0.0-alpha API
createRouter 创建路由 const router = createRouter({ history: createWebHistory(process.env.BASE_URL), routes }) router.beforeEach(...) router.a……