clay 的文章
-
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…… -
-
pom依赖
pom依赖 <!--统一管理jar包版本--> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding…… -
Spring Cloud入门
一 SpringCloud简介 springcloud=分布式微服务架构的一站式解决方案,是多种微服务架构落地技术的集合体,俗称微服务全家桶----大概20种技术 微服务架构体系…… -
Vue-CLI
一 Vue CLI 项目介绍 1.创建第一个vue脚手架项目 vue init webpack 项目名 项目目录结构 fist-vue ------------>项目名 build -----…… -
-
微服务架构
系统架构的演变 SOA SOA全称为Service-Oriented Architecture ,即面向服务的架构。它可以根据需求通过网络对松散耦合的粗粒度应用组件(服务)进行分布式部署、……