#所有环境公用的配置属性management: endpoint: health: show-details: always endpoints: web: exposure: include: '*'info: app-name: pay author: xiaofeiyang email: 46 ...
分类:
编程语言 时间:
2020-02-14 11:02:53
阅读次数:
104
一、mysql索引种类 1、加速查找: 查找普通字段和查找有索引字段,哪个方式查找速度快:根据索引来查字段速度更快 2、创建索引: 为userinfo表email字段创建索引: create index ix_name on userinfo<email>; #创建字段email索引文件,起别名ix ...
分类:
数据库 时间:
2020-02-14 10:51:59
阅读次数:
85
jar存放位置 jar包配置方式 迭代器:迭代输出。 <c:forEach items="${lis}" var="lis"> <tr align="center"> <th>${lis.id}</th> <th>${lis.lastName}</th> <th>${lis.email}</th> ...
分类:
编程语言 时间:
2020-02-13 22:46:40
阅读次数:
75
#-*- coding:utf-8 -*- #-Author-= JamesBen #Email: 1597757775@qq.com import requests from bs4 import BeautifulSoup import bs4 #定义第一个函数得到网页源代码,并且可以进行稳定的 ...
分类:
编程语言 时间:
2020-02-13 00:05:11
阅读次数:
113
PMP考试报名先要到PMI的网站上免费注册一个用户,然后登陆到PMI网站,详细的填写报名申请,申请包括基本信息、教育背景、项目经历等信息。这些信息提交后,PMI会审核资料的真实性,并会就部分学员的材料进行调查,如果被幸运的抽中后,则PMI需要提交更详细的证明材料,直接快递给PMI。一般都是就项目经历和学历进行抽样审核。当审核通过后,PMI会发一封Email,告诉资格审查通过,可以去计划考试了。一年
分类:
其他好文 时间:
2020-02-12 20:23:58
阅读次数:
73
Write a SQL query to find all duplicate emails in a table named Person. + + + | Id | Email | + + + | 1 | a@b.com | | 2 | c@d.com | | 3 | a@b.com | + + ...
分类:
其他好文 时间:
2020-02-12 16:35:55
阅读次数:
61
git bash here 拉代码 git config --global user.name "用户名" git config --global user.email "邮箱" git clone 地址 提交代码: 1、git add **/**/文件名 (文件修改路径(相对路径)) 2、git ...
分类:
其他好文 时间:
2020-02-12 13:02:37
阅读次数:
62
import os import smtplib # 处理多种形态的邮件主体我们需要 MIMEMultipart 类 from email.mime.multipart import MIMEMultipart # 发送字符串的邮件 from email.mime.text import MIMET ...
分类:
其他好文 时间:
2020-02-11 14:32:05
阅读次数:
101
两句命令 git config --global user.name 你的目标用户名git config --global user.email 你的目标邮箱名 具体步骤 wang@SVELL-87 MINGW64 /e/project1 (develop)$ git config user.nam ...
分类:
其他好文 时间:
2020-02-11 11:32:12
阅读次数:
49
常用的远程库比如github,可以将邮箱和用户名配置为global 其他远程库比如gitlab,针对每个clone的本地库,将邮箱和用户名设置位local ...
分类:
其他好文 时间:
2020-02-10 10:17:23
阅读次数:
80