常见异常
Sky786905664
这个作者很懒,什么都没留下…
展开
-
Java compiler level does not match解决方法
5 从别的地方导入一个项目的时候,经常会遇到eclipse/Myeclipse报Description Resource Path Location Type Java compiler level does not match the version of the installed Java project facet.出现这个问题的原因原创 2016-07-04 09:17:05 · 387 阅读 · 0 评论 -
intellij idea build时出现Artifact contains illegal characters的解决
intellij idea build时出现Artifact contains illegal characters的解决此处无法创建是因为Artifact的命名为大小写混合,将大写改为小写即可正常创建转载 2018-01-07 15:47:49 · 66305 阅读 · 4 评论 -
Spring mvc-异常javax.servlet.ServletException: Could not resolve view with name 'xxx' in servlet with
最近使用spring mvc开发项目,遇到一个问题:javax.servlet.ServletException: Could not resolve view with name 'ok' in servlet with name 'spring' at org.springframework.web.servlet.DispatcherServlet.render(Disp转载 2017-07-05 10:34:39 · 11002 阅读 · 0 评论 -
Spring Boot Spring MVC Rest json输出日期的问题
最近在学习Spring Boot,配置确实简化了,但是还有些考虑不够合适之处。RestController中json输出日期的问题默认输出为TIMESTAMP时间戳格式{"id":1,"content":"Hello, World!","created":1425300054855,"guid":"547fc545-e246-4243-96f5-fce21c7626db"}--转载 2017-07-13 20:19:52 · 5596 阅读 · 0 评论 -
svn1.7 appears to be part of a Subversion 1.7 or greater working copy. Please upgrade your Subversio
The current (8.0-SNAPSHOT) build uses version 1.5 of the maven-svn-revision-number-plugin plugin, when source code has been checked out using a subversion client version 1.7 the build fails with a sub转载 2017-06-19 09:35:05 · 4586 阅读 · 0 评论 -
Eclipse 无法打断点问题-遇到带斜杠的断点图标
今天调试eclipse程序,莫名的就遇到这种问题。解决:在run菜单里面,把skip all breakpoints 选项勾去即可。如图:转载 2017-04-25 10:48:11 · 513 阅读 · 0 评论 -
解决PKIX问题:unable to find valid certification path to requested target
异常报错详情javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid cer转载 2016-12-15 11:10:45 · 7010 阅读 · 1 评论 -
eclipse 配置tomcat插件
插件安装很简单,只需要将下载的tomcatPluginV31解压缩到Eclipse安装目录的plugins目录下即可然后重启即可。 tomcatPluginV33.1网址:http://download.csdn.net/download/yunixiang/8433569原创 2016-12-10 22:05:17 · 586 阅读 · 0 评论 -
Maven使用常见问题整理
1、更新eclipse的classpath加入新依赖 1、在dependencyManagement里面加入包括版本在内的依赖信息,如: joda-time joda-time 1.6.2 2、在同级的dependencies节点里面加入该依赖,如: joda-time joda-time原创 2016-09-20 20:04:56 · 5843 阅读 · 0 评论 -
Target runtime Apache Tomcat v8.0 is not defined.错误解决方法
Eclipse导入工程后工程上显示一个小红叉,但工程里没有文件错误,也没有语法错误,百思不得其解啊,后来在网上找了一些资料说是项目引用的类库路径有问题。【项目】->【右键】->【build path】->【configure build path】->【libraries】,查看一下引用的类库路径。网上都说是因为这里引用错误引起的,但是我在项目导入的时候做的第一件事情就是修改这里的library,原创 2016-07-04 09:52:14 · 1932 阅读 · 0 评论 -
解决 IntelliJ IDEA Properties 文件代码不高亮
我们在 IDEA 编辑 properties 文件的时候,会发现敲出的代码不会高亮显示,会提示你 “Unused property more... (Ctrl+F1) ”,如下图显示,这是为什么呢?这是因为IDEA默认对properties文件是进行关键字检查的,虽然我不知道这有啥用,但是很明显对我们来说暂时没用,而且还造成了我们编写properties时没有高亮显示,看着一片灰白色的代码心情一顿...转载 2018-07-03 16:43:29 · 10783 阅读 · 0 评论