在没有war
1234567891011121314
<plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>9.4.49.v20220914</version> <configuration> <httpConnector> <port>8080</port> <!-- 这里指定 jetty 服务的端口号 --> </httpConnector> <useTestClasspath>true</useTestClasspath> <webAppConfig> <contextPath>/</contextPath> <!-- 这里指定在浏览器访问时,当前Web应用的根路径 --> </webAppConfig> </configuration></plugin>