启动IDEA报端口(如1099)被占用错误
ctrl+r -> cmd -> netstat -aon|findstr 1099 -> 看结果最后一栏的进程ID号xxxx -> taskkill -f -pid xxxx
前端src,href使用规范
不要用../方式回退到上级目录来引用外部数据,这样在修改目录结构后,极易引发“正确的引用却根本找不到外部数据”的问题
根本原因:
request.getRequestDispatcher 页面跳转会引起样式,js等外部数据丢失。
正确解决方案:
<% String path = request.getContextPath();%>
<link rel="icon" href="<%=path%>/images/logo.ico" type="image/x-icon">
<script src="<%=path%>/jquery-3.4.1.js" type="text/javascript"></script>
部署到云服务器后,网站响应过慢的问题
进入:$JAVA_HOME$/conf/security/java.security 文件
修改 securerandom.source=file:/dev/random 为
securerandom.source=file:/dev/./urandom