我尝试通过maven命令在glassfish v5上部署hello1项目(Java EE SDK v8 tutorial的一个示例):
$ mvn install它会得到以下错误:
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.658 s
[INFO] Finished at: 2018-12-03T11:33:57+03:30
[INFO] Final Memory: 13M/291M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.cargo:cargo-maven2-plugin:1.6.4:redeploy (deploy) on project hello1: Execution deploy of goal org.codehaus.cargo:cargo-maven2-plugin:1.6.4:redeploy failed: Cannot create configuration. There's no registered configuration for the parameters (container [id = [glassfish5x], type = [installed]], configuration type [existing]). Actually there are no valid types registered for this configuration. Maybe you've made a mistake spelling it? -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException如果有人回答,我会很感激这个问题应该如何解决。提前感谢
发布于 2018-12-06 15:20:12
我解决了。发生该错误是因为glassfish服务器尚未启动。在部署之前,我必须启动glassfish服务器(使用命令$ mvn install)
请注意,glassfish v4需要JDK6或JDK7。而glassfish v5需要JDK7或JDK8。
https://stackoverflow.com/questions/53590056
复制相似问题