报错
学习中出现的问题及解决方法
巧仔要早睡
这个作者很懒,什么都没留下…
展开
-
解决RabbitMQ拒绝连接
解决RabbitMQ拒绝连接先安装otp环境再安装rabbitmq-server,电脑左下角搜索服务,找到RabbitMQ右键启动原创 2021-03-12 18:58:10 · 2717 阅读 · 0 评论 -
出现“java.lang.Exception: No runnable methods”的解决方法
出现“java.lang.Exception: No runnable methods”的解决方法1、在要测试的方法前加上@Test2、或检查导入的Test包是否正确原创 2021-02-13 22:00:03 · 1294 阅读 · 0 评论 -
出现“Could not open ServletContext resource [/mybatis.xml] ” 怎么办
出现“Could not open ServletContext resource [/mybatis.xml] ” 怎么办原文:<bean id="fac" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="db"></property> <property name="configLocation" value=原创 2021-02-08 21:25:46 · 1727 阅读 · 0 评论 -
出现:Cause: java.lang.ClassNotFoundException: Cannot find class: com.mysql.jdbc.Driver怎么办?
出现:Cause: java.lang.ClassNotFoundException: Cannot find class: com.mysql.jdbc.Driver怎么办?运行时报错:Caused by: java.sql.SQLException: Error setting driver on UnpooledDataSource. Cause: java.lang.ClassNotFoundException: Cannot find class: com.mysql.jdbc.Driver原创 2021-01-31 20:27:11 · 2104 阅读 · 1 评论 -
Linux配置Java环境明明配置的是1.8可是查看Java版本的时候却是1.7应该怎么办
Linux配置Java环境明明配置的是1.8可是查看Java版本的时候却是1.7应该怎么办配置了1.8的环境变量可是在查询的时候变成了1.7本来想将错就错万一1.7版本也能用呢?直到写了一个用来测试用的Java文件在运行的时候出错了:Exception in thread “main” java.lang.UnsupportedClassVersionError: A : Unsupported major.minor version 52.0意思是由较高版本的JDK编译的java class原创 2021-01-07 02:48:52 · 1152 阅读 · 0 评论 -
虚拟机安装后Linux系统输入ifconfig查不到ip怎么办
虚拟机安装后Linux系统输入ifconfig查不到ip怎么办今天开始安装虚拟机,到安装系统的时候出现了小问题,提示我说:已将该虚拟机配置为使用 64 位客户机操作系统。但是,无法执行 64 位操作。此主机支持 Intel VT-x,但 Intel VT-x 处于禁用状态。如果已在 BIOS/固件设置中禁用 Intel VT-x,或主机自更改此设置后从未重新启动,则 Intel VT-x 可能被禁用。(1) 确认 BIOS/固件设置中启用了 Intel VT-x 并禁用了“可信执行”。(2) 如原创 2021-01-05 20:31:53 · 2019 阅读 · 0 评论 -
大无语事件
原创 2020-12-11 17:38:09 · 138 阅读 · 0 评论 -
出现“Exception in thread “main“ java.lang.ArrayIndexOutOfBoundsException”:数组下标越界
给定一个数组,把数组中的所有0全都移到数组后边且不改变其他非0的数原先的顺序比如说原来的数组为:[7, 3, 0, 1, 2, 0, 7, 0, 9, 6, 2]经过变换后为:[7, 3, 1, 2, 7, 9, 6, 2, 0, 0, 0]在写代码的时候我不注意然后出现ArrayIndexOutOfBoundsException,即数组下标越界的错误。先贴一下代码: public static void main(String[] args) { int[] nums = {7,原创 2020-12-07 00:45:11 · 1138 阅读 · 0 评论 -
当出现“Failed to load resource: the server responded with a status of 404 ()”怎么解决(附上了我的心理活动)
今天跟着一个视频敲代码,运行的时候控制台提示我有错误:先是“GET http://localhost:8080/js/jquery-1.8.0.min.js net::ERR_ABORTED 404”网上说是没有正确引用jquery地址,说要用<script src="${pageContext.request.contextPath}/js/jquery.min.js"></script>试了一下还是不行= =捣鼓捣鼓了出现了另外一个报错语句"Failed to loa原创 2020-11-29 11:25:00 · 8845 阅读 · 0 评论 -
遇见“The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved..”怎么办
JavaWeb项目中运行出现500错误提示:The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml or the jar files deployed with this application怎么办?还有出现java.lang.NoClassDefFoundError:com / alibaba / druid / pool / DruidDataSourceFactory怎么原创 2020-11-27 01:18:47 · 300 阅读 · 0 评论 -
遇见“Error running ‘Tomcat 8.5.34‘: Address localhost:8080 is already in use”怎么办
运行我的第一个web项目的时候出现了Error running ‘Tomcat 8.5.34’: Address localhost:8080 is already in use,说8080被占用了解决方法:打开cmd输入“netstat -ano”然后看见占用8080端口的是8772然后cmd输入“tasklist”,可以找到8772对应的是ApplicationWebServer.exe 8772 Services 0 4,572 K原创 2020-11-09 22:41:01 · 1777 阅读 · 0 评论 -
出现com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown database ‘test‘ 应该怎么办
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown database ‘test’报错原因是:MySQL数据库没有创建 test 数据库解决办法:在MySQL中创建test:create database test转载 2020-11-06 20:00:24 · 8891 阅读 · 1 评论