前言 SpringBoot的默认配置文件格式是.properities,同时也支持***.yaml或***.yml 1、指定启动的环境 spring: profiles: active: dev 2、给springboot服务命名(配合springcloud时非常有用) spring: applic ...
分类:
编程语言 时间:
2021-07-29 16:19:22
阅读次数:
0
转自:https://www.cnblogs.com/yanzi-meng/p/10763054.html https://www.cnblogs.com/time-on/p/6955764.html 1、对于字符 & 的转移 在执行语句字符串中含有 & 符号时,会被认为要执行插入操作,下面示例转义 ...
分类:
数据库 时间:
2021-07-28 21:39:08
阅读次数:
0
分组 # url.py urlpatterns = [ .... # url上捕获的参数 会按照位置参数方式传参给试图函数 url(r'^blog/([0-9]{4}/\d{2})/$', views.blog), ] # view.py def blog(request, year, month) ...
分类:
其他好文 时间:
2021-07-28 21:36:38
阅读次数:
0
Pset_MaterialSteel 材料钢性:与钢(或其他金属和各向同性材料)有关的一组扩展的机械性能。 NameTypeDescription YieldStress P_SINGLEVALUE / IfcPressureMeasure Yield Stress A measure of the ...
分类:
其他好文 时间:
2021-07-27 17:36:28
阅读次数:
0
前言 pytestconfig是pytest的一个内置fixture,可以获取上下文,它的作用跟 request.config 是一样的,可以获取配置对象。 pytestconfig的源代码 @fixture(scope="session") def pytestconfig(request: Fi ...
分类:
其他好文 时间:
2021-07-26 16:56:21
阅读次数:
0
MySQL数据库设计规范(仅供参考) 目录 规范背景与目的 设计规范2.1 数据库设计2.1.1 库名2.1.2 表结构2.1.3 列数据类型优化2.1.4 索引设计2.1.5 分库分表、分区表2.1.6 字符集2.1.7 程序DAO层设计建议2.1.8 一个规范的建表语句示例2.2 SQL编写2. ...
分类:
数据库 时间:
2021-07-26 16:38:19
阅读次数:
0
在指定网址下载文件,并放到指定目录 import urllib.request import os url = "xxxxx" data_path = "D:/xxx" if not os.path.isfile(data_path): # 如果不存在文件 ret = urllib.request. ...
分类:
其他好文 时间:
2021-07-23 17:44:16
阅读次数:
0
题目链接 30分的题,喜大普奔 总思路的话,就是读入一堆信息以后,先按id/time(这个的意思是先排序Id,再排序time)的顺序sort一下,然后找两两配对放进一个数组里,这个时候你也要记录下时间来。然后跑一遍那个数组就可以找出所有最大。至于询问的话就跑一遍那个时间数组。 这个题想想思路也不是很 ...
分类:
其他好文 时间:
2021-07-21 17:35:37
阅读次数:
0
一句话木啊基础 短,小,强,隐蔽好,powerful,2333333,基于B/S <%execute request("value")%> execute是参数 eval是来执行参数的 对于网站来说,要对用上马即支持的运行环境,(iis支持asp、aspx、php),asp无权调用cmd,aspx有 ...
分类:
其他好文 时间:
2021-07-21 17:35:19
阅读次数:
0
use crossbeam_channel::{Receiver, bounded}; use tokio::time::{Duration, delay_for}; #[tokio::main] async fn main() { let (s, r) = bounded(10); for i i ...
分类:
其他好文 时间:
2021-07-19 16:57:38
阅读次数:
0