./configure --prefix=/opt/nginx-1.17.10 --with-http_stub_status_module --with-http_realip_module --with-http_ssl_module --with-pcre --with-http_realip ...
分类:
Web程序 时间:
2020-05-06 11:40:33
阅读次数:
114
依赖环境 1. 系统环境 gcc/g++ 7 cuda 10.1 2. conda环境 ...
分类:
Web程序 时间:
2020-05-06 01:21:36
阅读次数:
131
题目: 解答: 方法一: 首先找出最短字符串,然后一个一个匹配。 具体代码如下: 1 class Solution 2 { 3 public: 4 string longestCommonPrefix(vector<string> &strs) 5 { 6 if(strs.size() == 0) ...
分类:
其他好文 时间:
2020-05-03 18:42:39
阅读次数:
56
```java @Data @Component //可以通过@ConfigurationProperties来自动绑定 //@ConfigurationProperties(prefix = "test2") @PropertySource({"classpath:test.properties"... ...
分类:
其他好文 时间:
2020-05-03 10:32:11
阅读次数:
61
查看安装编译参数命令: nginx -V 编译选项说明: 编译选项 作用 --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/ng ...
分类:
其他好文 时间:
2020-05-02 12:11:46
阅读次数:
60
1 function PrefixInteger(num, n) { 2 return (Array(n).join(0) + num).slice(-n); 3 } ...
分类:
其他好文 时间:
2020-04-30 17:11:59
阅读次数:
45
rsync是一个快速增量文件传输工具,它可以用于在同一主机备份内部的备分,我们还可以把它作为不同主机网络备份工具之用。服务器端:1.安装该服务rsync-3.0.8.tar.gz安装步骤:1,tar-zxvfrsync-3.0.8.tar.gz2,cdrsync-3.0.83,./configure--prefix=/usr/local/rsync4,make;makeinstall2、配置文件/
分类:
系统相关 时间:
2020-04-29 12:31:35
阅读次数:
67
第2 章 @RequestMapping注解 2.1 @RequestMapping 映射请求注解 2.1.1 @RequestMapping 概念 1) SpringMVC使用@RequestMapping注解为控制器指定可以处理哪些 URL 请求 2) 在控制器的类定义及方法定义处都可标注 @R ...
分类:
移动开发 时间:
2020-04-28 12:50:28
阅读次数:
71
因为之前每次都要百度 所以这次记录一下 set -g prefix C-a #修改快捷键 unbind C-b #解绑 ctrl b # VIM模式 bind-key k select-pane -U # up bind-key j select-pane -D # down bind-key h ...
分类:
其他好文 时间:
2020-04-26 10:39:40
阅读次数:
68
spring DefaultListableBeanFactory 实现了基本的IOC容器 一 查看spring BeanFactory接口源码。 1 String FACTORY_BEAN_PREFIX = "&"; //定义工厂bean的名字前缀为“&”; 2 Object getBean(St ...
分类:
其他好文 时间:
2020-04-25 23:10:18
阅读次数:
59