1、windows10 pip设置目录:C:\ProgramData\pip\pip.ini [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ ←--清华大学源 2、dos命令:pip config --global set ...
分类:
编程语言 时间:
2021-02-19 13:05:20
阅读次数:
0
注意:下面的内容都是放在虚拟主机的单独配置中,而并非是在httpd.conf 的全局配置中。 禁止访问某些文件/目录 增加Files选项来控制,比如要不允许访问 .inc 扩展名的文件,保护php类库: <Files ~ "\.inc$"> Order allow,deny Deny from al ...
分类:
Web程序 时间:
2021-02-19 13:02:29
阅读次数:
0
移动端网页--better-scroll容易采坑合集 一、better-scroll源码bug,浏览器需要刷新一次才能正常滑动 在new BScroll时,在options中加入 mouseWheel: true,//开启鼠标滚轮 disableMouse: false,//启用鼠标拖动 disab ...
分类:
移动开发 时间:
2021-02-19 12:59:19
阅读次数:
0
数据类型 语言分类 强类型语言 要求变量的使用要言给符合规定,所有变量必须要先定义后使用 弱类型语言 Java数据类型分类 基本类型 数值类型 整数类型 byte:占1个字节,范围:-128~127 short:占2个字节,范围:-32768~32767 int:占4个字节,范围:-21474836 ...
分类:
其他好文 时间:
2021-02-18 13:40:13
阅读次数:
0
问题描述 centOS7上面装有oracle数据库,参考这种方式安装的,服务器异常关闭,重启服务器后数据库不能启动。 处理步骤 1、登录Linux,切换到oracle用户下su - oracle,查询lsnrctl服务是否开启lsnrctl status 2、监听没有启动,则需要输入lsnrctl ...
分类:
其他好文 时间:
2021-02-18 13:39:03
阅读次数:
0
自动装配 springboot的启动注解是@SpringBootApplication,它是一个组合注解,是由@SpringBootConfiguration、@EnableAutoConfiguration、@ComponentScan组成的。而自动配置就是由@EnableAutoConfigur ...
分类:
编程语言 时间:
2021-02-18 13:20:23
阅读次数:
0
psvm或者main main方法 sout --system.out 输出 ctrl+鼠标左键,进入类 左侧structure,查看类的结构,方法 tools --generate javadoc --other command line arguments:-encoding utf-8 -ch ...
分类:
其他好文 时间:
2021-02-18 13:17:46
阅读次数:
0
第一步:下载安装包 下载地址: https://github.com/seata/seata/releases/tag/v0.9.0 解压到想存放的地址 第二步:配置seata-server config目录下的file.conf文件 29行左右找到service模块儿 修改内容 vgroup_ma ...
分类:
其他好文 时间:
2021-02-18 13:06:20
阅读次数:
0
类 类的定义 //定义一个Person的类 class Person { //属性 String userName = 'Tobu'; int age = 25; String blogAdress = 'https://www.cnblogs.com/TobuTobu'; String userI ...
分类:
其他好文 时间:
2021-02-18 12:55:10
阅读次数:
0
1.使用npm下载plugin npm i html-webpack-plugin -D 2.配置webpack.config.js文件 /* webpack配置文件,作用:指示webpack怎么干活,干哪些活 当你运行webpack指令的时候,会加载其中的配置 所有的构建工具都是基于Node.js ...
分类:
Web程序 时间:
2021-02-17 15:10:52
阅读次数:
0