
报错处理
涛涛英语学不进去
Ctrl + C Ctrl + V AC !!! over .. next !!!
展开
-
com.mysql.jdbc.Driver报类找不到
仿照这个目录形式,创建对应目录,把jar放到这个位置 右键这个jar选择添加为库 确定即可原创 2022-03-25 11:18:14 · 4172 阅读 · 5 评论 -
java可以,javac不行
我的解决做法是: 系统变量→寻找Path 变量→编辑 删除%JAVA_HOME%\jre\bin; 舒服了原创 2021-10-06 13:40:44 · 318 阅读 · 0 评论 -
javaWeb初次运行项目空白,代码没错
解决方法 屏蔽service,destory,init方法即可原创 2019-09-18 11:19:08 · 661 阅读 · 0 评论 -
javaWeb乱码解决
在doGet()方法的首行加入 response.setContentType(“text/html;charset=UTF-8”);原创 2019-09-18 11:22:21 · 133 阅读 · 0 评论 -
java.sql.SQLException: Can not issue data manipulation statements with executeQuery().报错
终于发现错误了!!!! 增删改 用 execute() 查询 用 executeQuery()原创 2019-10-25 09:24:40 · 788 阅读 · 0 评论 -
Artifact xxx :war exploaded:Error duing artifact deployment See server log for datails
把这个红色的删掉,点右边+ 添加要运行的原创 2020-03-24 12:10:57 · 227 阅读 · 0 评论 -
-bash: ./configure: Permission denied
-bash: ./configure: Permission denied 使用这个bash ./configure原创 2021-04-13 00:41:15 · 527 阅读 · 0 评论 -
版本不一致的大坑。Failed to introspect Classproperties. ......ConfigurationPropertiesBea
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'configurationPropertiesBeans' defined in class path resource [org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.class]: Post-proc原创 2021-04-06 13:43:01 · 501 阅读 · 0 评论 -
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.Persiste
唉,给自己挖的坑,哭着也得补上 手贱使用了@Builder注解 就这样,还没加全参无参注解,我不报错谁报错 如果一个类没有写构造函数,系统会自动给一个无参构造, 如果写了,系统就不会给无参构造 同样,构建者模式@Builder,肯定有构造函数啊 这玩意Spring你不给它留个无参构造,它能让你好过啊! 烦死了,cao! ...原创 2020-05-06 18:39:20 · 349 阅读 · 0 评论 -
vue-axios.min.js?a7fe:1 You have to install axios
要在main.js里加 package.json里加原创 2020-04-24 15:19:48 · 1858 阅读 · 0 评论 -
Access to XMLHttpRequest报错
写前端时需要用到ip地址,访问别人的接口时报错,需要前端跨域 下载这个chrome插件,启动即可原创 2020-04-23 07:52:05 · 2272 阅读 · 0 评论 -
java前端传值,后端接收值为null
后端接收的userIp结果为null 是因为没有加 @ResponseBody注解 解决了点个赞呗原创 2020-04-23 07:45:32 · 4784 阅读 · 6 评论 -
spring常见报错
原创 2020-04-17 14:33:03 · 205 阅读 · 0 评论 -
Error starting ApplicationContext. To display the conditions report re-run your application with 'de
Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘userSoft1851Controller’: Injec...原创 2020-04-13 17:50:28 · 2219 阅读 · 0 评论 -
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'r
因为默认是走WEB-INF目录,如果这里没有配置文件 需要改一下测试路径 类名上加上这句话 @WebAppConfiguration(“src/main/resources”)//WebAppConfiguration注解类默认为webapp目录,,切换到这个目录 即可,解决问题了点个赞给个支持哈,小胖先谢谢大佬啦 ...原创 2020-03-27 15:53:27 · 476 阅读 · 0 评论