1.oracle 用户环境: 主库: [oracle@hzmtx admin]$ cat ~/.bash_profile # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi ...
分类:
数据库 时间:
2020-06-28 00:20:49
阅读次数:
82
一个进度条 App package com.sly.uploadfile.base.mulcopier; /** * Created by admin on 2020/6/27. */ public class App { public static void main(String[] args) ...
分类:
编程语言 时间:
2020-06-27 17:29:07
阅读次数:
81
我们知道,镜像我们可以从DockerHub上下载,也可以从阿里云镜像上下载,这些镜像都是已经构建好的镜像,如果想要构建自己的镜像,那么我们可以通过2种方式来实现 方式一 : Docker commit 方式二 : DockerFile 一.docker commit 命令介绍 如果我们在已经运行的容 ...
分类:
其他好文 时间:
2020-06-27 16:19:37
阅读次数:
68
URL路由分发include 增加新APP 手动创建 cmd中在Django项目目录下 python manage.py startapp app02 在setting中增加app02的路径 INSTALLED_APPS = [ 'django.contrib.admin', 'django.con ...
分类:
Web程序 时间:
2020-06-27 09:37:32
阅读次数:
66
我的vscode一直连不上扩展商店,网上找了很多办法都不行,最后删了两个文件,完美解决,特此记录一下,希望可以帮到和我遇到一样问题的人。 其实很简单,只需删除两个文件: 1、C:\Users\Administrator\.vscode 2、C:\Users\Administrator\AppData ...
分类:
其他好文 时间:
2020-06-26 21:59:51
阅读次数:
310
Django日志配置 django中的log需要在settings.py中配置 import time LOGGING_DIR = os.path.join(BASE_DIR, "logs") # LOGGING_DIR 日志文件存放目录 if not os.path.exists(LOGGING_ ...
分类:
其他好文 时间:
2020-06-26 20:21:31
阅读次数:
55
高并发模拟测试工具 postman apache bench(AB) JMeter (1) 使用postman创建并发模拟测试 据说这种方式的并发测试看看就行了, 没用, 使用的是串行不是并发 填入并发和延迟, 基本完成了 (2) apache bench(ab) 需要安装apache 通过上面的方 ...
分类:
其他好文 时间:
2020-06-26 18:16:23
阅读次数:
71
classs Admin < activeRecord::Base delegate :firstname, :to => :user # 等价于 # firstname => user.firstname # delegate :firstname, :to => :user, :prefix = ...
分类:
其他好文 时间:
2020-06-26 18:04:07
阅读次数:
47
参考网址:http://www.wupaas.com/ 1.Excel文件的导入导出 项目源码:后台:https://github.com/zhongyushi-git/easypoi-demo-admin.git 前端:https://github.com/zhongyushi-git/easyp ...
分类:
其他好文 时间:
2020-06-26 16:20:56
阅读次数:
104
Route::prefix('admin')->group(function (){ Route::get('/test1','Admin\AdminController@test1'); Route::get('/test2','Admin\AdminController@test2'); }); ...
分类:
其他好文 时间:
2020-06-26 14:46:03
阅读次数:
58