当我尝试使用 ./gora goracompiler
运行apache gora编译器时,出现以下错误
Error: Could not find or load main class org.apache.gora.compiler.cli.GoraCompilerCLI
在此之前,我通过设置JAVA_HOME变量来解决该错误后,JAVA_HOME未设置错误
OS: Cent OS 6.5
Java version : java version "1.7.0_45"
OpenJDK Runtime Environment (rhel-2.4.3.3.el6-x86_64 u45-b15)
OpenJDK 64-Bit Server VM (build 24.45-b08, mixed mode)
答案 0 :(得分:1)
goracompiler
command期望GoraCompilerCLI位于$GORA_HOME/gora-compiler-cli/target/classes/
检查类路径中的模块gora-compiler-cli/target/classes/java/org/apache/gora/compiler/cli/GoraCompilerCLI.class
是否有gora-compiler-cli
或.jar。
如果没有,请使用以下命令编译模块:
mvn package -pl gora-compiler-cli