随笔分类 -  【E】错误提示

摘要:ERROR] \work\workspace\Analyse\src\main\java\com\eversec\sta_area\dao\impl\StaAreaBeanDaoImpl.java:[19,34] 软件包 com.eversec.common.dao.impl 不存在[ERROR]  阅读全文
posted @ 2017-10-27 09:47 Legolas_4 阅读(234) 评论(0) 推荐(0)
摘要:发现很多不相关的注入错误时,很有可能是xxxMapper.xml文件 的namespace重名,或者id重名。 在shipingservice报错,可能是xml问题。 在web报错,可能是注入问题。 阅读全文
posted @ 2017-09-29 09:04 Legolas_4 阅读(128) 评论(0) 推荐(0)
摘要:302 Found 如何解决??? http://www.educity.cn/java/678296.html http://hongjiang.info/http-application-x-www-form-urlencoded/ 阅读全文
posted @ 2017-09-25 15:03 Legolas_4 阅读(7755) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/jxctx/article/details/41720343 阅读全文
posted @ 2017-09-18 11:06 Legolas_4 阅读(249) 评论(0) 推荐(0)
摘要:public class ProjectStatusTime implements Serializable { private static final long serialVersionUID = 1L; private int id; private String pr_id; privat 阅读全文
posted @ 2017-09-14 11:55 Legolas_4 阅读(329) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/coderinchina/article/details/51206720 阅读全文
posted @ 2017-09-13 10:02 Legolas_4 阅读(271) 评论(0) 推荐(0)
摘要:16:10 Error running 8.0.41: Address localhost:1099 is already in use 16:10 Error running 8.0.41: Unable to open debugger port (127.0.0.1:3958): java.n 阅读全文
posted @ 2017-09-12 16:12 Legolas_4 阅读(331) 评论(0) 推荐(0)
摘要:.. 阅读全文
posted @ 2017-08-19 17:25 Legolas_4 阅读(374) 评论(0) 推荐(0)
摘要:http://tool.oschina.net/commons?type=5 阅读全文
posted @ 2017-08-16 16:25 Legolas_4 阅读(129) 评论(0) 推荐(0)
摘要:错误:只是因为少了一个【/】,结束标签,耽误了有一个小时至少。。哎!! 正确: 阅读全文
posted @ 2017-08-16 16:10 Legolas_4 阅读(182) 评论(0) 推荐(0)
摘要:【问题】以太网2 显示网络电缆被拔出。不能连接上vpn了。 【原因】不是因为网络电缆被拔出,而连不上vpn,而是因为没连vpn,才显示的网络电缆被拔出。 vpn连接不上是其他原因。 阅读全文
posted @ 2017-08-15 09:03 Legolas_4 阅读(799) 评论(0) 推荐(0)
摘要:怎么处理?除了把他隐藏 还有啥方法? 阅读全文
posted @ 2017-08-14 17:25 Legolas_4 阅读(137) 评论(0) 推荐(0)
摘要:tomcat 8.0.41 -> server.xml <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" 【】/> +++URIEncoding="UTF-8" 加到【】 阅读全文
posted @ 2017-08-14 10:03 Legolas_4 阅读(155) 评论(0) 推荐(0)
摘要:Unable to open debugger port (127.0.0.1:4184): java.net.SocketException "socket closed" http://www.cnblogs.com/CESC4/p/7092554.html 阅读全文
posted @ 2017-08-10 15:31 Legolas_4 阅读(373) 评论(0) 推荐(0)
摘要:Uncaught ReferenceError: viewShipImgs is not defined 这个问题怎么解决啊?? 研究了一下午了,搜到的答案一个能解决的都没有!!! 有可能仅仅是因为 阅读全文
posted @ 2017-08-07 16:26 Legolas_4 阅读(863) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/qq_33171970/article/details/60578401 很可能的原因是, 阅读全文
posted @ 2017-07-12 14:07 Legolas_4 阅读(380) 评论(0) 推荐(0)
摘要:找出占用1099端口的进程,进入windows命令,查看什么进程占用了1099端口 使用命令:netstat -aon|findstr 1099 找出占用1099端口的进程,如下图所示: 然后关闭占用该端口的进程:taskkill -f -pid 3756 这样就可以正常启动Tomcat了. net 阅读全文
posted @ 2017-06-29 08:33 Legolas_4