server { listen 8085; server_name 127.0.0.1; charset utf-8; root html/dist; location / { try_files $uri $uri/ /index.html; index index.html; } locatio ...
分类:
其他好文 时间:
2020-07-29 15:25:29
阅读次数:
55
前言 「上一篇文章」我们对 Spring 有了初步的认识,而 Spring 全家桶中几乎所有组件都是依赖于 IoC 的。 刚开始听到 IoC,会觉得特别高大上,但其实掰开了很简单。 跟着我的脚步,一文带你吃透 IoC 原理。 本文主要讲原理,围绕“是何”、“为何”来谈,下一篇文章会讲实践部分,也就是 ...
分类:
编程语言 时间:
2020-07-29 10:21:09
阅读次数:
64
接口文档可参考以下内容 1.利用postman的方式提交图片 1.1在head中添加这个格式 1.2上传图片文件 postman默认是文本格式,因为是图片就选择File,在value中就会显示一个选择框,选择你要上传的图片,如下图,less1就是我选择图片,执行,生成了一个sigid,说明接口执行成 ...
分类:
Web程序 时间:
2020-07-28 22:41:04
阅读次数:
112
php 压缩文件夹 例子来源于php官方文档。 <?php { /** * Add files and sub-directories in a folder to zip file. * @param string $folder * @param ZipArchive $zipFile * @p ...
分类:
Web程序 时间:
2020-07-28 16:55:09
阅读次数:
90
主机: master:192.168.199.231 slave:192.168.199.231 maste和slave都安装mariadb yum install mariadb mariadb-server systemctl start mariadb #启动mariadb systemctl ...
分类:
数据库 时间:
2020-07-28 00:24:02
阅读次数:
78
#效果预览 本博客使用的点击特效就是这个,为了避免部分浏览器不支持(目前已知Edge浏览器不支持该特效),还是弄一张gif上来。 #实现代码 把下面的代码放在<body></body>中即可 <script src="https://blog-static.cnblogs.com/files/ast ...
分类:
其他好文 时间:
2020-07-27 15:52:27
阅读次数:
72
原文:https://www.cloudera.com/tutorials/manage-files-on-hdfs-via-cli-ambari-files-view/2.html Introduction In the previous tutorial, we learned to manag ...
分类:
其他好文 时间:
2020-07-27 13:45:42
阅读次数:
88
2020-07-26 1. 报错"需要更改文件夹" “The current directory 'd:\program files\matlab\r2016b\bin' is reserved for MATLAB files. Please change your current directo ...
分类:
其他好文 时间:
2020-07-26 22:53:01
阅读次数:
92
Linux:以单根的方式组织文件//目录结构:FSH(FilesystemHierarchyStandard)[root@localhost~]#ls/bindevlibmedianetrootsrvusrbootetclib64miscoptsbinsysvarcgrouphomelost+foundmntprocselinuxtmpbin普通用户使用的命令/bin/ls,/bin/date4.
分类:
其他好文 时间:
2020-07-26 11:20:07
阅读次数:
87
<?php // clearDir('upload/images/'); if ($_FILES['file']['error'] == 0) { $MAX_FILE_SIZE = 300000; if ($_FILES['file']['size'] > $MAX_FILE_SIZE) { exi ...
分类:
Web程序 时间:
2020-07-26 00:34:37
阅读次数:
73