Linux学习知识梳理 1.基础知识梳理 1.1基础命令 vim:/查找相应字符 n:显示下一个匹配字符 N:显示上一个 lvm:逻辑卷管理 弹性扩容和缩容磁盘 缺陷:存储效率较低 磁盘种类:SATA SAS PCI-E(插显卡) 磁盘分区: d delete a partition 删除分区 g ...
分类:
其他好文 时间:
2019-10-19 20:54:04
阅读次数:
149
[TOC] flask项目整个请求流程其实就是执行:wsgi_app()方法中调用的full_dispatch_request(),包括请求扩展和真正的视图函数 full_dispatch_request() 在分析这段代码之前,先回顾下请求扩展函数 (1)@app.before_first_req ...
分类:
其他好文 时间:
2019-10-16 19:29:12
阅读次数:
100
一. 通知类型 spring aop通知(advice)分成五类: (1)前置通知[Before advice]:在连接点前面执行,前置通知不会影响连接点的执行,除非此处抛出异常。 (2)正常返回通知[After returning advice]:在连接点正常执行完成后执行,如果连接点抛出异常,则 ...
分类:
编程语言 时间:
2019-10-16 00:16:02
阅读次数:
101
``` import numpy as np import cv2 import argparse from Computer_Vision.Canny_Edge_Detection.sobel import sobel_edge_detection from Computer_Vision.Can... ...
分类:
编程语言 时间:
2019-10-15 09:40:05
阅读次数:
308
选择器类型 下面,选择器类型的优先级是递增的: 1、 类型选择器 (例如 h1) 伪元素 (例如 ::before) 类型选择器 (例如 h1) 伪元素 (例如 ::before) 2、 类选择器 (例如 .example) 属性选择器 (例如 [type=“radio”]) 伪类 (:hover) ...
分类:
Web程序 时间:
2019-10-14 15:08:55
阅读次数:
120
安装supervisor 在centOS6.8 下安装supervisor, wget --no-check-certificate https://bootstrap.pypa.io/ez_setup.py -O - | sudo python 然后输入sudo密码 到安装完成即可 进入root ...
分类:
其他好文 时间:
2019-10-13 20:33:09
阅读次数:
125
第一节介绍Spring启动(链接)时,介绍AbstractApplicationContext的过销毁过程,主要是调用了内部的destroyBeans方法,这节便来介绍bean的销毁过程。 一.销毁流程 destroyBeans方法内部委托给了DefaultSingletonBeanRe ...
分类:
编程语言 时间:
2019-10-13 12:58:30
阅读次数:
117
With the accellerated evolution of mobile hardware, application developers tend to reconsider the importance of the Augmented Reality technology ( cal ...
分类:
其他好文 时间:
2019-10-12 20:23:30
阅读次数:
146
public class ZccTaskService { TaskService taskService; @Before public void init(){ ProcessEngineConfiguration processEngineConfiguration = ProcessEngi ...
分类:
其他好文 时间:
2019-10-12 01:40:48
阅读次数:
238
public class ZccRuntimeService { RuntimeService runtimeService; RepositoryService repositoryService; @Before public void init(){ ProcessEngineConfigur ...
分类:
其他好文 时间:
2019-10-12 01:38:09
阅读次数:
807