博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java sun.org.mozilla_maven编译找不到符号 sun.org.mozilla.javascript.internal
阅读量:1530 次
发布时间:2019-04-21

本文共 1474 字,大约阅读时间需要 4 分钟。



问题:

[ERROR] 位置: 类 cn.ffcs.dep.rule.script.javascript.JSAdapter 软件包 sun.org.mozilla.javascript.internal 不存在

[ERROR] -> [Help 1]

org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-p

lugin:3.1:compile (default-compile) on project sq-edi-component: Compilation failure

at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:213)

at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)

Caused by: org.apache.maven.plugin.compiler.CompilationFailureException: Compilation failure

at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:858)

解决:

添加javac编译时的参数bootclasspath,oracle sun不鼓励开发人员直接使用sun.*里面的代码,主要的原因是sun.*里面的代码就是实现jvm的底层代码,是平台相关的,而且相关实现随着版本升级随时可能会被替换,代码的稳定性、一致性等等都存在问题. 参考下http://docs.oracle.com/javase/7/docs/technotes/tools/windows/javac.html javac的相关参数说明

Sometimes, you need to pass other compiler arguments that are not handled by the Compiler Plugin itself but is supported by the compilerId selected. For such arguments, the Compiler Plugin's compilerArguments will be used. The following example passes compiler arguments to the javac compiler:

[...]

[...]

org.apache.maven.plugins

maven-compiler-plugin

2.3.2

-verbose -bootclasspath ${java.home}\lib\rt.jar

[...]

[...]

Or you can also use the Map version:

[...]

[...]

org.apache.maven.plugins

maven-compiler-plugin

2.3.2

${java.home}\lib\rt.jar

[...]

[...]

转载地址:http://mkudy.baihongyu.com/

你可能感兴趣的文章
nginx 反向代理,动静态请求分离,proxy_cache缓存及缓存清除
查看>>
nginx 的proxy_cache才是王道
查看>>
Nginx proxy_cache 使用示例
查看>>
Nginx源代码分析 - 日志处理
查看>>
使Apache实现gzip压缩
查看>>
Memcached在大型网站中应用
查看>>
Hadoop简要介绍
查看>>
squid中的X-Cache和X-Cache-Lookup的意义
查看>>
squid 优化指南
查看>>
centos vnc配置笔记
查看>>
让Squid 显示本地时间
查看>>
linux mysql 命令 大全
查看>>
清除Squid缓存的小工具
查看>>
Varnish Cache 3.0.0安装
查看>>
2011年6月编程语言关注度排行
查看>>
Varnish使用小结
查看>>
千万级并发HAproxy均衡负载系统介绍
查看>>
什么是A记录、MX记录、CNAME记录
查看>>
MongoDB简介
查看>>
Varnish purges 缓存清除
查看>>