使用 phpstudy时,一直提示找不到指定的模块,但是在我对应的文件里面是有该模块的 且 php.ini中 对应的语句注释也已打开 我遇见该问题解决方法是:php版本与这个拓展的版本不对应 ,把版本相对应就解决了 参考:https://blog.csdn.net/TheSilentNight/ar ...
分类:
Web程序 时间:
2020-01-07 18:29:35
阅读次数:
85
在项目的开发过程中有时我们需要引入我们本地的jar包,这些jar包没有存在maven仓库中 ,这时没有办法通过pom文件直接引入,在开发过程中我们可以通过add as library的方式,可以在开发的过程中使用,但是将项目打包成jar时,这些包并不会打包到jar中,项目就会报错。 那么我们怎么来处 ...
分类:
编程语言 时间:
2020-01-07 17:57:08
阅读次数:
73
一、镜像和容器与仓库的关系二、镜像的结构镜像的结构:${register_name}/${reposttory_name}/${image_name}:${tag_name}例如:docker.io/library/apline:3.10.1#docker.io远地仓库地址#library分类仓库的名字#apline镜像名称#3.10.1版本号
分类:
其他好文 时间:
2020-01-07 10:32:46
阅读次数:
110
使用 Vue Cli 脚手架创建 Vue 项目实现 Element 的按需引入 1. 安装 和 和 依赖 2. 修改 文件 3. 在 文件下,按需引入组件,且挂在到 实例上 4. 在 中便可使用 组件 ...
分类:
其他好文 时间:
2020-01-06 13:11:55
阅读次数:
91
如题,我们希望像gdb C程序一样。对python程序就行debug 可以使用pdb来实现这样的功能。 见:https://docs.python.org/3/library/pdb.html 最简单的方法,我们以 longest_substring.py 为例。 使用如下方式执行它,便进入了deb ...
分类:
数据库 时间:
2020-01-06 12:30:20
阅读次数:
100
2.1 深入探讨Image 说白了,image就是由一层一层的layer组成的。 2.1.1 官方image https://github.com/docker-library mysql https://github.com/docker-library/tomcat/blob/master/8. ...
分类:
其他好文 时间:
2020-01-05 22:25:17
阅读次数:
82
1. Architecture F2-1(1) The application code consists of project or product files. For convenience, these are simply called app.c and app.h, however a ...
分类:
其他好文 时间:
2020-01-04 22:44:35
阅读次数:
109
这个问题是因为安装了Npcap导致的问题,我当时的解决方案是不安装Npcap,而安装WinPcap。 https://wiki.wireshark.org/WinPcap Npcap and WinPcap are Windows versions of the libpcap library. O ...
分类:
其他好文 时间:
2020-01-03 10:25:51
阅读次数:
1927
1.拉去hello-world镜像并运行 docker pull hello-world 拉取hello-world镜像Using default tag: latestlatest: Pulling from library/hello-world1b930d010525: Pull comple ...
分类:
其他好文 时间:
2020-01-03 09:13:26
阅读次数:
110
Nanomsg简介 nanomsg是一个socket library,提供了几种常见的通讯模式,目前可用可扩展的协议有: PAIR 一对一 BUS 多对多 REQREP 允许构建无状态服务集群来处理用户请求 PUBSUB 将消息发给订阅消息的用户 PIPELINE 汇总来自多个来源的消息,并在目的点 ...