问题描述
我正在使用jetty-9.1.1.v20140108,并尝试通过命令行
启动码头服务,向我显示以下错误。为此,使用JRE 1.7.0_02。
java.io.IOException:无法读取文件:modules\npn \npn-1.7.0_02.mod
在org.eclipse.jetty.start.Modules.registerModule(Modules.java:405)
在org.eclipse.jetty.start.Modules.registerAll(Modules .java:395)org.eclipse.jetty.start.Main.processCommandLine(Main.java:561)
org.eclipse.jetty.start.Main.main(Main.java:102 )
Jetty正在寻找与
在您的Jetty / modules / npn目录中,复制一份 npn-1.7.0_04.mod并将其命名为 npn-1.7.0_02.mod。
在文本编辑器中打开文件并替换所有出现的 1.1 .0.v20120525和 1.0.0.v20120402。
请参见了解更多信息。
I am using jetty-9.1.1.v20140108 and tried to start jetty service through the command line showing me the following error. for this, using the JRE "1.7.0_02".
java.io.IOException: Cannot read file: modules\npn\npn-1.7.0_02.mod
at org.eclipse.jetty.start.Modules.registerModule(Modules.java:405)
at org.eclipse.jetty.start.Modules.registerAll(Modules.java:395)
at org.eclipse.jetty.start.Main.processCommandLine(Main.java:561)
at org.eclipse.jetty.start.Main.main(Main.java:102)
Jetty is looking for a .mod file corresponding to the version of the JRE you are using, but it isn't included in your distribution of Jetty.
In your Jetty/modules/npn directory, make a copy of "npn-1.7.0_04.mod" and name it "npn-1.7.0_02.mod".
Open the file in a text editor and replace all occurrences of "1.1.0.v20120525" with "1.0.0.v20120402".
See http://www.eclipse.org/jetty/documentation/current/npn-chapter.html#npn-versions for more information.
这篇关于无法通过窗口7中的命令启动码头服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!