1.所使用材料 ,spring boot 项目 基于maven ,maven 工具, docker工具 ps:为啥使用 docker 公司微服务需要启动太多,有两个优点吧! 1.方便管理,2.减少服务占用内存量 2.上手 a.新建Dockerfile文件如下目录 b.Dockerfile文件内容 F ...
分类:
编程语言 时间:
2019-10-29 15:34:45
阅读次数:
99
创建数据 通过电脑cmd命令找到django所在项目的位置 执行 python manage.py shell 导入要创建的包名 from myapp import models 方法一:创建数据 通过models.Account.objects.create 创建 方法二:创建数据 o=model ...
分类:
其他好文 时间:
2019-10-23 13:48:56
阅读次数:
50
1.继承django的Storage类,重写open,save和exist方法 def url(self, name): return 'http://192.168.5.135:8888/'+name ...
分类:
Web程序 时间:
2019-10-19 13:21:18
阅读次数:
145
正确打开方式: 解释 libname为我们需要安装的三方库名 ...
分类:
系统相关 时间:
2019-10-13 12:58:43
阅读次数:
120
问题描述 "LG5357" 题解 不是 的`AC自动机`复杂度是假的。 把 搞出来,建立 ,树上爆搜一遍就好了。 $\mathrm{Code}$ cpp include using namespace std; template void read(Tp &x){ x=0;char ch=1;int ...
分类:
其他好文 时间:
2019-10-04 22:39:22
阅读次数:
113
章节Python MySQL 入门 Python MySQL 创建数据库 Python MySQL 创建表 Python MySQL 插入表 Python MySQL Select Python MySQL Where Python MySQL Order By Python MySQL Delet ...
分类:
数据库 时间:
2019-09-27 10:57:33
阅读次数:
114
1.下载一个nexus3的镜像 docker pull sonatype/nexus3 2.将容器内部/var/nexus-data挂载到主机/root/nexus-data目录。 docker run -d -p 8081:8081 --name nexus -v /root/nexus-data ...
分类:
系统相关 时间:
2019-09-23 15:34:34
阅读次数:
183
datalist 元素规定输入域的选项列表。 列表是通过 datalist 内的 option 元素创建的。 如需把 datalist 绑定到输入域,请用输入域的 list 属性引用 datalist 的 id ...
分类:
Web程序 时间:
2019-09-11 18:15:13
阅读次数:
137
https://www.acwing.com/problem/content/797/ cpp include define maxn 100000+10 using namespace std; int a[maxn],s[maxn],l,r,ans; int main() { int n,m; ...
分类:
其他好文 时间:
2019-09-08 18:04:49
阅读次数:
73
LuoguP4551最长异或路径 题面 题目链接 题解 01 Trie 题目要求求树上的最长异或路径 很容易想到树上差分 处理每个点的根节点的异或和 讲异或和存进Trie树 按为贪心即可 代码如下: ...
分类:
其他好文 时间:
2019-08-02 00:26:37
阅读次数:
90