docker-compose version: "3" services: user-dashboard: build: . volumes: - .:/data/code/ - /proc:/writable-proc ports: - "8891:8891" networks: - walkof ...
分类:
其他好文 时间:
2020-06-05 21:22:38
阅读次数:
79
1、锁表查询 --查看锁住的表 select request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tableName from sys.dm_tran_locks where resource_type='OBJECT ...
分类:
数据库 时间:
2020-06-05 19:24:45
阅读次数:
68
原文:.NetCore MVC 3.0 项目 区域路由配置及使用 参考文档: https://www.cnblogs.com/Allen0910/p/6629507.html https://blog.csdn.net/dupeng0811/article/details/90616546 首先需要... ...
分类:
Web程序 时间:
2020-06-04 21:58:44
阅读次数:
99
//pointer to structure #include <stdio.h> struct Person { char name[10]; char character[20]; int age; }; void display(struct Person *t); int main() { ...
分类:
其他好文 时间:
2020-06-04 21:27:17
阅读次数:
69
服务编排方式部署 以下文件具体目录 1、构建springboot后台服务dockerfile文件,vim /usr/local/docker/soc/Dockerfile FROM jdk:8MAINTAINER sinvie.cnADD ScgService.jar /root/ScgServic ...
分类:
编程语言 时间:
2020-06-04 09:11:46
阅读次数:
262
Python面向对象的开发肯定离不开class,有点类似C语言的struct可以抽象描述对象并返回数据于方法。 例如,建立一个class描述笛卡尔坐标系中的点: class point(): def __init__(self, x, y): self.x = x self.y = y self.n ...
分类:
编程语言 时间:
2020-06-03 20:05:16
阅读次数:
128
转自:https://blog.csdn.net/qq_38245537/article/details/79009448 一、Tomcat顶层架构 先上一张Tomcat的顶层结构图(图A),如下: Tomcat中最顶层的容器是Server,代表着整个服务器,从上图中可以看出,一个Server可以包 ...
分类:
其他好文 时间:
2020-05-31 21:49:09
阅读次数:
62
参考:https://www.bilibili.com/video/BV1yW411B7iv?t=5297 事前的准备: adb驱动 手机调到开发者模式,开启USB调试 pycharm 原理 1.获取手机截图 2.点击起点,终点 3.获取坐标 4.算出距离 5.算出按压时间 6.按压松开指令 7.更 ...
分类:
编程语言 时间:
2020-05-31 15:49:59
阅读次数:
68
给出下面的一个基类框架: class Point_1D { protected: float x;//1D 点的x坐标 public: Point_1D(float p = 0.0); float distance(const Point_1D & p2); } 以Point_1D为基类建立一个派生 ...
分类:
编程语言 时间:
2020-05-30 22:01:17
阅读次数:
84
给出下面的一个基类框架: class Point_1D { protected: float x;//1D 点的x坐标 public: Point_1D(float p = 0.0); float distance( );//计算当前点到原点的距离 } 以Point_1D为基类建立一个派生类Poin ...
分类:
编程语言 时间:
2020-05-30 21:52:23
阅读次数:
175