1.下载python3.6包 wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tar.xz 2.安装相关依赖 yum install gcc-c++ yum install pcre pcre-devel yum install z ...
分类:
编程语言 时间:
2021-06-02 20:23:58
阅读次数:
0
spring: #thymeleaf thymeleaf: cache: false prefix: classpath:/templates/ check-template-location: true suffix: .html encoding: utf-8 mode: HTML #这个是关键 ...
分类:
编程语言 时间:
2021-06-02 19:47:35
阅读次数:
0
第一轮刷题解法: 1)如果长度为1,返回第一个字符串;如果存在空,返回空;否则长度递增,逐一比较,有不同则返回当前前缀。 class Solution: def longestCommonPrefix(self, strs: List[str]) -> str: count_prefix = 1 i ...
分类:
编程语言 时间:
2021-06-02 19:01:16
阅读次数:
0
出现的问题: 利用ConfigurationProperties注解配置数据源发现读取的数据库配置信息全部为null。 @Bean(name = "pq") @ConfigurationProperties(prefix = "spring.datasource") public DataSourc ...
分类:
编程语言 时间:
2021-06-02 15:23:34
阅读次数:
0
简述Spring Cloud Gateway 是 Spring Cloud 的一个子项目,该项目是基于 Spring 5.0,Spring Boot 2.0 和 Project Reactor 等技术开发的网关,它旨在为微服务架构提供一种简单有效的统一的 API 路由管理方式。 Spring Clo ...
分类:
其他好文 时间:
2021-06-02 14:13:45
阅读次数:
0
NGINX帮助 -h [19:08:40 root@localhost sbin]#nginx -h nginx version: nginx/1.16.1 Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g direc ...
分类:
其他好文 时间:
2021-06-02 13:27:09
阅读次数:
0
wget https://github.com/Kitware/CMake/releases/download/v3.15.5/cmake-3.15.5.tar.gz tar -zxf cmake-3.15.5.tar.gzcd cmake-3.15.5 ./bootstrap --prefix=/ ...
分类:
其他好文 时间:
2021-05-24 16:34:22
阅读次数:
0
遥感监测在水利的应用 随着卫星遥感技术的成熟化,遥感技术在水利行业发展中发挥了越来越重要的作用。根据水利业务需求,主要围绕水土保持监管、河湖监管、水资源监管、水环境监测等业务方向,利用多源遥感影像监测技术结合航天宏图自研遥感影像处理软件、图斑变化自动识别等新技术,加工形成各类监测成果,为水利主管部门 ...
分类:
其他好文 时间:
2021-05-24 16:15:37
阅读次数:
0
自动装配是 Spring Boot 的核心部分,也是 Spring Boot 功能的基础,正是由于自动装配,才将我们从 Bean 的繁复配置中解脱出来。那么 Spring Boot 中的自动装配指的是什么?我们继 续以 Spring MVC 为例,不使用 Spring Boot 时,我们可能需要配置 ...
分类:
编程语言 时间:
2021-05-24 14:57:22
阅读次数:
0
npm config -h npm config list prefix 为 --globa 的安装路径 npm config edit 调用notepad编辑 npm ls npm list -g 全局模块 npm list recast ...
分类:
其他好文 时间:
2021-05-24 14:55:51
阅读次数:
0