
计算机应用综合课程设计
coderyzh
这个作者很懒,什么都没留下…
展开
-
Tomcat启动闪退原因
首先,我在学习中遇到的两个TomCat启动不了的问题和解决办法。第一个TomCat启动不了的原因是:TomCat所用的端口被其他程序占用,导致TomCat无法启动。解决办法:找到这个占用8080端口的程序,并将它关闭。具体操作步骤:1.win+R打开cmd窗口2.输入命令:netstat -ano3.在本地地址中看 ":"后面的数组就是端口号。通过端口号查找对应PID。...原创 2020-04-19 18:36:36 · 419 阅读 · 0 评论 -
(windows)Neither the JAVA_HOME nor the JRE_HOME environment variable is defined问题解决。
在setclasspath.bat的开头声明环境变量。如图所示:然后点击startup.bat就可解决问题原创 2020-04-18 21:24:31 · 202 阅读 · 0 评论 -
Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"
下载地址:https://www.runoob.com/jsp/jsp-jstl.html主要原因是缺少jstl.jarstandard.jar两个Jar包解决此问题的方法为以下:在新建道的工程的内WEB-INF/lib文件夹里就会容有jstl.jarstandard.jar拷贝到出错的工程的WEB-INF/lib里加入jstl.jarstandard.jar即可解决...原创 2020-04-18 20:15:24 · 421 阅读 · 0 评论 -
Tomcat的startup.bat启动后显示乱码
打开tomcat文件夹到conf目录下打开logging.properties修改java.util.logging.ConsoleHandler.encoding = utf-8为java.util.logging.ConsoleHandler.encoding = GBK再双击 startup.bat 启动 Tomcat...原创 2020-04-10 09:45:11 · 539 阅读 · 1 评论