clay的文章

搜索内容

clay 的文章
  • ubuntu 运行vgg相关配置
    Java

    ubuntu 运行vgg相关配置

    安装Python3.7 1.执行所有升级 sudo apt update sudo apt upgrade -y 2.安装编译Python源程序所需的包 sudo apt install build-essential -y sudo apt install……
    clay 2020年11月21日
  • Mybatis单表多级联查
    Java Spring

    Mybatis单表多级联查

    菜单层次查询 entity菜单;类 public class Menu { // 菜单id private String id; // 父菜单id private String parentId; // 菜单名称 ……
    clay 2020年9月6日
  • Nginx反向代理sprigboot–springboot域名绑定
    Java

    Nginx反向代理sprigboot–springboot域名绑定

    需要绑定的域名的nginx配置文件 server { listen 80; server_name java.afterglow.fun; index index.php index.html index.htm default.php defau……
    clay 2020年9月5日
  • Vue Rotuter 4.0.0-alpha API
    Vue

    Vue Rotuter 4.0.0-alpha API

    createRouter 创建路由 const router = createRouter({ history: createWebHistory(process.env.BASE_URL), routes }) router.beforeEach(...) router.a……
    clay 2020年8月28日
  • Hystrix熔断器
    Spring Cloud

    Hystrix熔断器

    一 概念 分布式系统面临的问题 复杂分布式体系结构中的应用程序 有数10个依赖关系,每个依赖关系在某些时候将不可避免地失败 服务雪崩 多个微服务之间调用的……
    clay 2020年7月3日
  • pom依赖
    Spring Cloud

    pom依赖

    pom依赖 <!--统一管理jar包版本--> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding……
    clay 2020年6月25日
  • Spring Cloud入门
    Java

    Spring Cloud入门

    一 SpringCloud简介 springcloud=分布式微服务架构的一站式解决方案,是多种微服务架构落地技术的集合体,俗称微服务全家桶----大概20种技术 微服务架构体系……
    clay 2020年6月25日
  • Vue-CLI
    Vue

    Vue-CLI

    一 Vue CLI 项目介绍 1.创建第一个vue脚手架项目 vue init webpack 项目名 项目目录结构 fist-vue ------------>项目名 build -----……
    clay 2020年6月19日
  • ES6
    ES6

    ES6

    let块级作用域 let和var的主要区别 let声明的变量只在当前(块级)作用域内有效 let声明的变量不能被重复声明 不存在变量提升 暂存死区(不能使用父级变量) ES6……
    clay 2020年6月9日
  • 微服务架构
    Java

    微服务架构

    系统架构的演变 SOA SOA全称为Service-Oriented Architecture ,即面向服务的架构。它可以根据需求通过网络对松散耦合的粗粒度应用组件(服务)进行分布式部署、……
    clay 2020年6月5日