
BUG
Naix1573
你有一个bug,我有一个bug,我们交换一下,就没有了bug~
o( ̄ヘ ̄o#)
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Software caused connection abort: socket write error
Software caused connection abort: socket write error转载 2017-09-12 20:42:28 · 41545 阅读 · 1 评论 -
Cause: com.microsoft.sqlserver.jdbc.SQLServerException: TDS 协议流无效。
2018-04-12 16:56:05,555 [pool-1-thread-1] ERROR [org.springframework.transaction.interceptor.TransactionInterceptor] - Application exception overridden by rollback exception org.springframework.dao.D...原创 2018-04-12 17:03:10 · 4862 阅读 · 0 评论 -
expected at least 1 bean which qualifies as autowire candidate for this dependency
2018-4-13 10:29:55 org.apache.catalina.core.ApplicationContext log 严重: Error creating bean with name ‘materController’: Injection of autowired dependencies failed;Could not autowire field: No qualify...原创 2018-04-13 10:36:48 · 5801 阅读 · 0 评论 -
Spring MVC No converter found for return value of type
解决 Spring MVC No converter found for return value of type原创 2017-09-12 15:26:03 · 701 阅读 · 0 评论 -
The valid characters are defined in RFC 7230 and RFC 3986
Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are define原创 2017-12-17 20:04:33 · 271 阅读 · 0 评论 -
not found for dependency: expected at least 1 bean which qualifies as autowire
bug:expected at least 1 bean which qualifies as autowire candidate for this dependency.原创 2017-12-12 13:55:19 · 12897 阅读 · 0 评论 -
ClassNotFoundException
报错ClassNotFoundException缺少jar包一般出现这中情况,50%是出现了缺少jar包的问题。。jar包的位置导入有问题我们知道在导入我们自己定义或者封装的jar包是一般是通过build path 来添加一个jar包,但是当我们用这种方法导入第三方提供的jar时,web project启动时会出现这种找不到jar的情况。所以此时你需要手动将需要的jar放到web-inf/lib下原创 2017-11-02 15:35:42 · 480 阅读 · 0 评论 -
创建web工程Spring配置文件找不到问题解决方案
IOException parsing XML document from class path resource [spring-mybatis.xml]; nested exception is java.io.FileNotFoundException: class path resource [spring-mybatis.xml] cannot be opened because it does not exist at org.springframework.beans.factory.xml原创 2017-11-18 17:08:14 · 3036 阅读 · 0 评论 -
Referenced file contains errors (http://www.springframework.org/schema/context/spring-context-3.1.xs
Referenced file contains errors (http://www.springframework.org/schema/context/spring-context-3.1.xsd). For more information, right click on the message in the Problems View and select "Show Details..."原创 2017-11-17 15:37:41 · 842 阅读 · 0 评论 -
A query was run and no Result Maps were found for the Mapped Statement
使用mybatis进行查询时,并没有为映射语句找到结果映射.没有给定resultType或者resultMap值出现的错误。 select from tb_content_category where parent_id = #{parentId}原创 2017-09-18 20:53:32 · 458 阅读 · 0 评论 -
Parameter index out of range (2 > number of parameters, which is 1)
Parameter index out of range (2 > number of parameters, which is 1)原创 2017-09-12 20:28:43 · 2385 阅读 · 0 评论 -
PermGen Space问题
tomcat服务器运行一段时间,报异常:java.lang.OutOfmemoryError: PermGen Space 的错误,导致项目无法正常运行。介绍:PermGen Space:指的是内存的永久保存区,该块内存主要是被JVM用来存放 class 和 mete 信息的,当 class 被加载 loader 的时候就会被存储到该内存区中,与存放类的实例的heap区不同,java中的 垃圾...原创 2019-02-13 13:46:26 · 1870 阅读 · 0 评论