Java及相关学习遇到的问题
Nimitz_33
这个作者很懒,什么都没留下…
展开
-
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.Reflecti
错误代码mapper。原创 2022-10-05 21:04:13 · 448 阅读 · 2 评论 -
Request processing failed; nested exception is java.lang.NullPointerException
Request processing failed; nested exception is java.lang.NullPointerException原创 2022-07-12 16:18:55 · 399 阅读 · 0 评论 -
bean must be of type
bean must be of type原创 2022-07-10 19:58:35 · 1502 阅读 · 0 评论 -
${pageContext.request.contextPath}获取路径出现$%7BpageContext.request.contextPath%7D
${pageContext.request.contextPath}获取路径出现$%7BpageContext.request.contextPath%7D原创 2022-07-06 22:45:10 · 465 阅读 · 1 评论 -
NoSuchBeanDefinitionException: No bean named ‘userService‘ available
有人说组件扫描@ComponentScan没有扫到@Service,或者jdk版本的问题,或者是userService大小写以及字符错误,后来我发现都不是。我的问题是这句代码:正确代码:在引用文件类型时不要打引号,引号是通过键取值。...原创 2022-06-04 19:39:08 · 865 阅读 · 0 评论 -
Error:java:错误:不支持发行版本 5
Error:java:错误:不支持发行版本 5(或13等版本),均是因为此几个地方版本不一致1、File -> settings-> Build,Execution,Deployment -> Compiler -> Java Compiler )2、File -> project Structure -> Modules3、pom.xml<properties> <java.version>13</java.vers原创 2022-05-12 21:52:04 · 144 阅读 · 0 评论 -
500 The server encountered an unexpected condition that prevented it from fulfilling the request.
500,服务器内部错误,在用户登录案例中输入正确的用户名和密码时出现这个错误首先尝试输入错误的用户名和密码,结果没有报错,可能是successServlet写错了。于是检查successServlet的代码,发现在获取request域对象使用方法getAttribute()时写成了获取转发对象getRequestDispatcher()更正错误后问题解决The selected directory is not a TomEE home这个错误是因为选择服务器时不应该选择tomcatEE,而原创 2022-02-26 16:01:18 · 2611 阅读 · 0 评论 -
The server encountered an unexpected condition that prevented it from fulfilling the request.
HTTP Status 500 – Internal Server Error500的错误很好调试,我的问题是在于用el和jstl,foreach遍历的时候没把要遍历的东西包含在反斜线"/"内。还有遍历到address的时候报错,原因是domain中没有写address,加上就好。总结这个案例我调试了很多次,是在它报404的时候,后来我放弃了,浪费了很多时间,今天从0开始重新写,居然没有出现404的错误,虽然我至今搞不明白之前404的错误是如何引起的,但如今能够运行通过我很高兴。凡做事情要坚原创 2022-01-01 00:11:20 · 1026 阅读 · 0 评论 -
无法在web.xml或使用此应用程序部署的jar文件中解析绝对uri:[http://java.sun.com/jsp/jstl/core]
在学习jstl时报错服务器无法解析jar包这是没有使用MAVEN,手动加入的两个jar包jar包中有描述性文件的el部分有红线说connot resolve,所以查询el表达式的相关内容,有文章说是servlet和jsp版本太低不支持el表达式。于是查看我的jsp,servlet版本是否有问题。查询方法:是打开jar包中META-INF的MANIFEST.MF文件,没有问题。考虑是服务器与jar包冲突,所以要更换tomcat版本。本着向下兼容的原则,我下载了最新的tomcat10,但无法原创 2021-12-09 02:05:51 · 853 阅读 · 0 评论 -
Application server libraries not found
##Application server libraries not found在idea中配置tomcat时报错"Application server libraries not found"。我有了tomcat8想多配一个tomcat10,据说是tomcat版本过高。我放弃了在19版idea上配置tomcat10。原创 2021-10-13 10:24:54 · 219 阅读 · 0 评论 -
Caused by: java.io.FileNotFoundException: class path resource [Classpath:jdbc.properties] cannot be
Caused by: java.io.FileNotFoundException: class path resource [Classpath:jdbc.properties] cannot be opened because it does not exist最后找到问题是在jdbcConfig中的注解@PropertySource(“classpath:jdbc.properties”)classpath写成了Classpath。要注意大小写!!...原创 2021-03-15 04:08:25 · 2509 阅读 · 0 评论 -
sql语句 异常 Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your
sql语句 异常 Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to yoursql语句 异常 Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your报错原因是sql语句写错了。字段要是变了颜色必然不会出错,最肯出的错误是1、除了最后一条语句是否每一条一原创 2020-10-28 18:04:50 · 572 阅读 · 0 评论 -
404 源服务器未能找到目标资源的表示或者是不愿公开一个已经存在的资源表示。
404 源服务器未能找到目标资源的表示或者是不愿公开一个已经存在的资源表示。尝试了网上的很多方法还是不行,最后解决方法是把Tomcat10换成Tomcat8,调试通过,控制台输出想要结果。原创 2020-10-24 05:02:38 · 684 阅读 · 0 评论