最新发布第21页
排序
Windows10 git commit报错node: command not found解决办法
在使用git准备提交文件时,报错: Commit failed with error 0 file committed, 1 file failed to commit: 上传车辆同行记录; .git/hooks/pre-commit: line 32: node: command not found 解决...
Springboot提示No beans of ‘RestTemplate’ type found错误
错误信息 在使用RestTemplate时,IntelliJ Idea提示Could not autowire. No beans of 'RestTemplate' type found.。 代码清单: @Component public class SmsUtil { @Autowired private RestTem...
jQuery根据多个class name获取元素
实现方式: <a href='javascript:void(0);' class='centerLeftNav active' id='1></a> <a href='javascript:void(0);' class='centerLeftNav' id='2'></a> var aTagId ...
JS判断一个字符串是否包含某些特殊字符?
JS判断一个字符串是否包含某些特殊字符? 实现 /** * 判断字符串是否包含指定字符串数组中的某一项 * @param {String} text 字符串 * @param {Array} values 可能包含的字符串数组 * @returns {...
简略记一下Office 365开发者计划加入过程
简略步骤如下: 1.加入页面 中文 https://developer.microsoft.com/zh-CN/microsoft-365/dev-program 或英文 https://developer.microsoft.com/en-us/microsoft-365/dev-program 2.查看存储 htt...
Office 365安装时只安装Word、Excel等特定项
Office365默认安装时会将Word、Excel、PowerPoint、OneNote、Outlook、Publisher和Access全家桶全部装到电脑,而我们许多人只需要前三者。那么如何安装我们需要的选项呢,方法还是有的。 打开官...
Hexo报错ERR_INVALID_URL解决
Hexo静态博客生成页面时报错 TypeError [ERR_INVALID_URL]: Invalid URL: https://ip访问:重定向到https://tdom.ml(跳转的时候浏览器可能提示不安全是正常的) 也就是将md文件中的所有连接都检...
Springboot上传文件报错:the temporary upload location is not valid
Springboot上传文件报错 Failed to parse multipart servlet request; nested exception is java.io.IOException: The temporary upload location [/data/upload_tmp/work/Tomcat/localhost/ROO...
SQL SERVER连接Secure Sockets Layer (SSL) 错误
今天java项目连接sql server突然连接不上了,报如下错误: com.microsoft.sqlserver.jdbc.SQLServerException: The driver could not establish a secure connection to SQL Server by using Se...
SQL根据查询结果更新数据
一、SQL SERVER 情形1:根据关联字段更新 UPDATE Table_A SET Table_A.col1 = Table_B.col1, Table_A.col2 = Table_B.col2 FROM Some_Table AS Table_A INNER JOIN Other_Table AS Table_B ON Ta...