近期在读Hadoop#Yarn部分的源代码.读到状态机那一部分的时候,感到enmu的使用方法实在是太灵活了,在给并发编程网翻译一篇文章的时候,正好碰到一篇这种文章.就赶紧翻译下来,涨涨姿势. 原文链接:http://www.javacodegeeks.com/2011/07/java-secret-using-enum-to-build-state.html 作者:Peter Lawrey    译者:陈振阳 综述 Java中的enum比其它的语言中的都强大,这产生了非常多令人吃惊的使用方法.…
在eclipse中新建maven project后,会自动生成main\test目录结构,新建一个测试类,然后编辑类文件时,总是提示错误:this compilation unit is not on the build path of a java project.后来在网上找到了解决办法: 需要先安装maven eclipse插件 m2eclipse 执行命令 mvn eclipse:clean 执行命令 mvn eclipse:eclipse 以上操作成功后,问题就解决了!…
最近在eclipse中,使用svn导入svn上的一个maven项目,但是导入后类的包并没有以源码包的方式显示,而是以普通文件包的方式显示出来,在对类进行F3等操作时就报错:“the resource is not on the build path of a java project”. 这种情况的原因是在该工程的构建路径中找不到该类. 解决方法: 1. 找到Java Build Path下面的src下的文件remove掉(如果src包没有正常显示),然后再Add Folder重新加上去,此时会…
一次系统断电维护之后,apache cxf 的 web service 接口调用一直报错: java.lang.IllegalArgumentException: No enum constant org.apache.ws.commons.schema.XmlSchemaForm. at java.lang.Enum.valueOf(Unknown Source) at org.apache.ws.commons.schema.EnumUtil.valueOf(EnumUtil.java:33…
在eclipse中新建了一个maven项目搭建Spring源码阅读环境,创建一个bean生产getter和setter方法的时候报错“the resource is not on the build path of a java project” 这种情况是因为在工程中找不到类: 解决办法:项目右键buildpath,然后将src下的文件都remove掉之后,重新add进来,然后关闭打开就可以了.…
今天Google如何在ST中编译运行Java的时候,无意中发现了一个更好的方法. 其实,在ST中是可以编译Java的,但是运行不了,因为没有配置运行命令.那么一般的配置方法都是如下的: http://www.oschina.net/translate/compile-and-run-java-programs-in-sublime-text-2 http://my.oschina.net/tashi/blog/187547 上面的方法,需要写runJava.bat放到jdk/bin下面,感觉侵入…
摘自: http://blog.csdn.net/haolongabc/article/details/7007701 java基础--Jar包添加到build path方式说明--01 前言:这段短文是根据工作实践结合自己的理解写的,有不对的地方恳请指出,QQ:380275672. 在eclips里在工程名上右键->build path->contigure bud path->java build path里有个 libraries->add external jars add…
错误描述 eclipse中的the resource is not on the build path of a java project,在Eclipse中点击生成源码时,弹窗提示该错误 解决办法 右键--->Properties--->Java Build Path 上找到Source选项卡,这种问题一般是没找到对应的源码,在Source下配置下你源码所在的包,此外在Libraries选项卡中,要指定的JDK依赖的库…
http://www.scala-sbt.org/0.13/docs/index.html sbt is a build tool for Scala, Java, and more. It requires Java 1.6 or later. Install See Installing sbt for the setup instructions. Getting Started To get started, please read the Getting Started Guide.…
在eclipse中,使用mavenimport了一个工程,但是在对某一个类进行F3/F4/ctrl+alt+H操作的时候报错:“the resource is not on the build path of a java project”. 这种情况也常常发生在重新打开eclipse时. 原因:在该工程的构建路径中找不到该类. 解决方法: 1. 找到buildpath下面的src下的文件remove掉,然后重新加上去,此时会更新所有目录. 2. 关闭该类,重新打开即可…