摘要:
原来是 Servlet、JSP 与 Spring 的版本之间的匹配出了问题。众所周知,2018 年,Java EE 改名为 Jakarta EE。这导致一些 JAR 包的包名也在之后的版本中进行了更改。这对本项目的影响是,Spring 本身是不含 Servlet、JSP 的 JAR 包的,但其依赖这 阅读全文
摘要:
systemctl start mysql.service 提示: System has not been booted with systemd as init system (PID 1). Can't operate. 然后: sudo service mysql start * Starti 阅读全文
摘要:
在开发过程中需要获取物理网卡的MAC地址: python代码如下: import wmi c = wmi.WMI() for s in c.Win32_NetworkAdapter(): print(s.MACAddress) 在实际过程中,有时候会发现mac地址每次获取会发生改变, 通过检查发现, 阅读全文
摘要:
转自:https://www.codeproject.com/Articles/19685/Get-Process-Info-with-NtQueryInformationProcess (有源码参考) Introduction This article will show a method to 阅读全文