在 windows 7 中设置 jetty9
setting jetty9 in windows 7
我正在尝试 运行 服务器,但未显示演示库中的应用程序,
https://www.filepicker.io/api/file/uGuFSW8qTeeoaStdgXmq
https://www.filepicker.io/api/file/BvxaEYDZRMKetH7qUNc9
我做错了什么?
您必须从子目录开始:
$ cd demo-base
$ java -jar ../start.jar
最好学习 maven 进行 EASE 开发和部署。
http://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html
maven 将帮助自动下载设置码头所需的依赖项以及更简单的配置。
$ mvn jetty:run
使用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>
我正在尝试 运行 服务器,但未显示演示库中的应用程序,
https://www.filepicker.io/api/file/uGuFSW8qTeeoaStdgXmq https://www.filepicker.io/api/file/BvxaEYDZRMKetH7qUNc9
我做错了什么?
您必须从子目录开始:
$ cd demo-base
$ java -jar ../start.jar
最好学习 maven 进行 EASE 开发和部署。 http://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html
maven 将帮助自动下载设置码头所需的依赖项以及更简单的配置。
$ mvn jetty:run
使用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>