摘要: //远程触发脚本 2种方式 1.配合 jenkins-cli.jar java -jar "E:\Repositories\atoms\hooks\jenkins-cli.jar" -s http://192.168.0.202:8080/ -auth hookuser:hookuser -webS 阅读全文
posted @ 2021-01-16 11:31 vaen 阅读(406) 评论(0) 推荐(0)
摘要: //远程触发的大坑: CSRF保护: Jenkins2.2版本之前可以手动关 Jenkins2.2版本之后,需要在配置文件中加入参数手动关 -Dhudson.security.csrf.GlobalCrumbIssuerConfiguration.DISABLE_CSRF_PROTECTION=tr 阅读全文
posted @ 2021-01-16 11:27 vaen 阅读(184) 评论(0) 推荐(0)
摘要: NO.1 2个方法不同 SUBSTR(bc_ymd, 1, 6) 与 SUBSTR(bc_ymd,6) NO.2 游标的写法 ​ CURSOR CR_TEST IS ​ SELECT ​ .... ​ FROM ​ ( ​ ); --最后结尾要要有分号 ​ NO.3 CASE WHEN 在查询条件中 阅读全文
posted @ 2021-01-16 11:25 vaen 阅读(94) 评论(0) 推荐(0)
摘要: th:action 表单常用 <form id="form" th:action="@{/doSave}">...</form> th:each list常用 <div th:each="policy,rowStat:${policyList}"> th:field 最后生成的html中会生成nam 阅读全文
posted @ 2021-01-16 11:10 vaen 阅读(230) 评论(0) 推荐(0)
摘要: 需求 格式化sql到java代码 sourceFilename = "sql.txt" targetFilename = "after.txt" f = open(targetFilename,"w") with open(sourceFilename, 'r') as file_to_read: 阅读全文
posted @ 2021-01-16 10:53 vaen 阅读(199) 评论(0) 推荐(0)