git的基本工作流程: 先进行项目环境的搭建,把整个项目的目录状况,以及所需要的resources文件创建好,把pom.xml写好 在小组组长的GitHub上创建一个与项目名相同的仓库 在本地IDEA上点击最上方的VCS菜单 点击上图所示,在本地创建一个Git仓库 然后右键项目,选择下图所示 这时发 ...
分类:
其他好文 时间:
2020-12-30 10:50:37
阅读次数:
0
批量插入 <!--批量插入--> <insert id="batchInsert"> insert into t_ingco_trade_lithium_electric_product ( product_no, li_e_product_no, transpor_report_number, m ...
分类:
其他好文 时间:
2020-12-30 10:28:02
阅读次数:
0
系统 windows 命令 nginx -t 报错 nginx emerg invalid number of arguments in "root" directive.... 原因 root行配置最后没写分号导致,加上分号即可解决 ...
分类:
其他好文 时间:
2020-12-29 11:29:07
阅读次数:
0
type annotation 类型注解 let count: number; count = 1; type inference 类型推断 const one = 1; const two = 2; const three = one + two; const person = { name: " ...
分类:
其他好文 时间:
2020-12-29 11:26:26
阅读次数:
0
pipeline { agent any environment { imagename = "镜像命名" tag = "v${BUILD_NUMBER}" } stages { stage('Pull code') { steps { echo "${imagename}:${tag}" git ...
分类:
编程语言 时间:
2020-12-29 11:16:14
阅读次数:
0
pipeline { agent any environment { imagename = '镜像名' tag = "v${BUILD_NUMBER}" #版本号 } stages { stage('Pull code') { steps { echo "${imagename}:${tag}" ...
分类:
其他好文 时间:
2020-12-29 11:15:03
阅读次数:
0
Given an input string (s) and a pattern (p), implement wildcard pattern matching with support for '?' and '*' where: '?' Matches any single character. ...
分类:
其他好文 时间:
2020-12-29 11:12:41
阅读次数:
0
var window_h=function(element,height){ var element=document.getElementsByClassName(element); for(let i=0;i<element.length;i++){ element[i].style.heigh ...
分类:
其他好文 时间:
2020-12-29 11:11:45
阅读次数:
0
名称与标识 id 使用了约束中的唯一约束。里面不能出现特殊字符的 name 没有使用约束中的唯一约束。里面可以出现特殊字符。 设置对象的生命周期方法 init-method Bean被初始化的时候执行的方法 destroy-method Bean被销毁的时候执行的方法(Bean是单例创建,工厂关闭) ...
分类:
编程语言 时间:
2020-12-28 11:33:21
阅读次数:
0
很多API并不是真正的实现了RESTful,而应该叫做RPC (Remote Procedure Call 远程过程调用),Roy Fielding曾经提到了它们的区别,原文如下: I am getting frustrated by the number of people calling any ...