这一章,我们直接创建NetCore3.1的项目 主要分为1个Api项目,和几个类库 解释: 项目——FytSoa.Api:提供前端接口的Api项目 类库——FytSoa.Core:包含了数据库操作类和模型 类库——FytSoa.Service:业务操作,包含接口和实现,以及Dto 类库——FytSo ...
分类:
Web程序 时间:
2020-01-20 14:45:03
阅读次数:
381
这是这半年来的时间表。 我花费了几十分钟才将其完善,完善后其对于日后的日程规划期望能有所帮助。 ...
分类:
其他好文 时间:
2020-01-20 14:44:45
阅读次数:
60
如题,利用C语言的GetCursorPos函数实现. 示例: #include <bits/stdc++.h> #include <windows.h> #include <conio.h> int main(){ long x, y; POINT pt = {0, 0}; LPPOINT xy = ...
分类:
编程语言 时间:
2020-01-20 14:44:27
阅读次数:
261
我们经常希望一段文本中的字符逐个显示,模拟出一种打字的效果。类似于终端命令行的感觉。最终效果 用JS去实现: html: <span class="text"></span> <i class="cursor" style="display: none; border-right:2px solid ...
分类:
Web程序 时间:
2020-01-20 14:44:11
阅读次数:
93
书签功能 保存常用的目录的别名以便实现快速跳转 进入 列出所有书签 如下 内省 一个问号? 变量的前面或后面加一个问号?显示通用信息 两个问号?? 如果是一个函数或者实例方法,显示源码 3.问题和星? np. load 搜索所有匹配的函数 %run命令 所有的文件都可以当做python程序运行 %r ...
分类:
编程语言 时间:
2020-01-20 14:43:53
阅读次数:
84
这是一篇讲述如何开发出扩展性强的程序的文章,我将结合自己实际的开发经验和具体例子来讲解何开发出扩展性强的程序。因为水平有限,不会讲得很深入,所以本文只适合软件开发初学者。 我将分6部分(暂定)来讲述如何开发扩展性强的软件。 第一部分:计算机程序设计发展概述 第二部分:面向对象开发入门。 第三部分:用 ...
分类:
其他好文 时间:
2020-01-20 14:43:38
阅读次数:
68
实现效果: 组件处理流程: 导入源表source ID input|output s-1 Name input|output s-2 City input|output s-3 Sales input|output s-4 创建express组件,并连接source s-1 --> ID input ...
分类:
其他好文 时间:
2020-01-20 14:43:21
阅读次数:
71
题目如下: Given a positive integer num consisting only of digits 6 and 9. Return the maximum number you can get by changing at most one digit (6 becomes 9 ...
分类:
其他好文 时间:
2020-01-20 14:43:03
阅读次数:
69
1、下载FileZilla Server https://filezilla-project.org/ 2、一步安装吧 3、开始配制 1)防火墙入站规则中将21, 23端口打开。 2)被动连接 FileZilla Server -- Edit--Settings 以上的端口也不要忘记入站规则中加入。 ...
分类:
其他好文 时间:
2020-01-20 14:41:49
阅读次数:
83
session 是什么? 我们常见的 Linux session 一般是指 shell session。Shell session 是终端中当前的状态,在终端中只能有一个 session。当我们打开一个新的终端时,总会创建一个新的 shell session。 就进程间的关系来说,session 由 ...
分类:
系统相关 时间:
2020-01-20 14:41:33
阅读次数:
258
"Apache ShardingSphere" "sharding core merge" "从一次Snowflake异常说起" ...
分类:
其他好文 时间:
2020-01-20 14:41:22
阅读次数:
108
1.工具类基类(配置类):ExecutorSchdule 1 public interface ExecutorSchdule { 2 3 //corePoolSize 表示允许线程池中允许同时运行的最大线程数。 4 int corePoolSize = 40; 5 6 //maximumPoolS ...
分类:
编程语言 时间:
2020-01-20 14:40:48
阅读次数:
75
自动化测试项目源代码目录结构规范 root/ projectA/ projectB/ ... projectN/ doc/ api/ ui/ Common/ Common.robot Resources/ ModuleA/ ModuleACommon.robot FeatureA.robot Fea ...
分类:
其他好文 时间:
2020-01-20 14:40:19
阅读次数:
126
环境:kali内置apache2 复现: 默认配置下,将文件加入到apache项目路径下 /var/www 此时apache2.conf默认配置如下: <Directory /var/www/> Options Indexes FollowSymLinks AllowOverride None Re ...
分类:
其他好文 时间:
2020-01-20 14:40:01
阅读次数:
175
linux centos6.8环境下部署zookeeper集群 转自:https://blog.51cto.com/13604100/2134669?source=dra 安装3台机器来作为zookeeper集群,3台机器的ip分别是192.168.174.7,192.168.174.8,192.1 ...
分类:
其他好文 时间:
2020-01-20 14:39:44
阅读次数:
62
from django.shortcuts import render,HttpResponse,redirect import os,sys from django.views import View from cmdb import models # Create your views here ...
分类:
其他好文 时间:
2020-01-20 14:39:03
阅读次数:
72