我試圖運行服務器,但不會出現在人口統計學基礎的應用程序,在Windows中設置jetty9 7
https://www.filepicker.io/api/file/uGuFSW8qTeeoaStdgXmq https://www.filepicker.io/api/file/BvxaEYDZRMKetH7qUNc9
我做了什麼錯?
我試圖運行服務器,但不會出現在人口統計學基礎的應用程序,在Windows中設置jetty9 7
https://www.filepicker.io/api/file/uGuFSW8qTeeoaStdgXmq https://www.filepicker.io/api/file/BvxaEYDZRMKetH7qUNc9
我做了什麼錯?
你必須從子目錄開始:
$ cd demo-base
$ java -jar ../start.jar
thanx。有用! –
最好的學習,便於開發和部署行家。 http://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html
maven將幫助AUTO自動下載設置jetty所需的依賴項,並且也更簡單的配置。
$命令mvn碼頭:運行
使用Maven使用這個pom.xml的部署:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.youcompany</groupId>
<artifactId>runjetty</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.test.skip>true</maven.test.skip>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.2.10.v20150310</version>
<configuration>
<connectors>
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
<port>8080</port>
<maxIdleTime>60000</maxIdleTime>
<responseHeaderSize>16192</responseHeaderSize>
</connector>
</connectors>
<webApp>
<contextPath>/yourWebApp</contextPath>
</webApp>
<war>C:/pathto/yourwebapp.war</war>
</configuration>
</plugin>
</plugins>
</build>
</project>
請爲文本*添加你的截圖*的內容到您的文章。 – Alexander
您應該將截圖中的實際文本複製並粘貼到您的帖子中。另外,你應該參考你正在談論的'演示基礎'。 –