vue开源组件库
快速滚动组件:vue-virtual-scroller
组件化Promise:vue-promised
Docker常用命令
镜像操作搜索镜像:docker search 关键字 例:docker search redis
拉取镜像:docker pull 镜像名称:镜像版本号 例:
docker pull redis #默认下载最新版本 (latest)
docker pull redis:5.0 #下载指定版本
查看镜像:docker images [选项]
docker images -a #列出所有镜像
docker images -q #只显示镜像ID
查看指定镜像信息:docker inspect 镜像ID ...
Centos7安装Mysql5.7(压缩包版)
官方 下载地址:https://downloads.mysql.com/archives/get/p/23/file/mysql-5.7.44-linux-glibc2.12-x86_64.tar.gz
能联网的情况下可以通过wget命令直接下载
上传到 Centos7 目录 /usr/local/src 下
进入目录 /usr/local/src 下:cd /usr/local/src
解压:tar -zxvf mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz
移动到 /u ...
CentOS7安装docker(使用yum进行安装)
官方安装链接(CentOS):https://docs.docker.com/engine/install/centos/
删除之前安装痕迹:1234567891011yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ ...
注解:@Profile
注解:@Profile@Profile注解的作用是指定类或方法在特定的 Profile 环境生效,任何@Component或@Configuration注解的类都可以使用@Profile注解。在使用DI来依赖注入的时候,能够根据@profile标明的环境,将注入符合当前运行环境的相应的bean。
@Prifile修饰类1234567891011@Configuration@Profile("prod")//特定的配置环境生效,在prod生产环境下生效public class DataSource ...
Springboot指定运行环境
Idea中运行springboot程序指定运行环境两种方式:
通过系统属性 -D 和命令行参数 -- 来设置
使用 -D 设置系统属性使用 -D 参数可以在 Java 虚拟机启动时设置系统属性,从而影响应用程序的运行。在 Spring Boot 应用程序中,可以使用 -D 参数来设置 spring.profiles.active 系统属性,以指定应用程序要使用的配置文件。
例如,要在开发环境中运行应用程序,可以在命令行中使用以下命令:
1java -Dspring.profiles.active=dev -jar ...
注解 @ConfigurationProperties和@PropertySources
@ConfigurationProperties是springboot中的注解,用于加载配置文件中的配置字段信息,包括
.properties,.yaml, 或者 .yml 格式中的配置
12345678@Configuration@ConfigurationProperties(prefix = "myapp")public class MyAppProperties { private String name; //此处字段上不需要加其他注解,会自动加载配置文件中的 m ...