グリーンハンドとして、HelloWorld サーブレットを作成しました。
package com.rx.servlet;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet("/helloworld")
public class HelloWorld extends HttpServlet {
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
PrintWriter writer = response.getWriter();
writer.write("<html><body>Hello World</body</html>");
}
}
次に、pom.xml に次の構成があります。
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>rx.helloworld</groupId>
<artifactId>simpleservlet</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>simpleservlet Maven Webapp</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<war.name>simpleservlet</war.name>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<servlet.version>4.0.1</servlet.version>
</properties>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>${war.name}</finalName><!-- name of the bundled project when it is finally built -->
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.3.9.v20160517</version>
<configuration>
<httpConnector>
<!--host>localhost</host-->
</httpConnector>
</configuration>
</plugin>
</plugins>
</build>
</project>
私はサーブレット仕様書から読んだところ、
Web アプリケーションに Servlet、Filter、または Listener コンポーネントが含まれていない場合、またはアノテーションを使用して同じことを宣言している場合、Web アプリケーションに web.xml を含める必要はありません。つまり、静的ファイルまたは JSP ページのみを含むアプリケーションには、web.xml が存在する必要はありません。
私は実際に を使用した@WebServlet
ので、 は含めませんでしたweb.xml
。
完全なコードベースはこちら
質問:しかし、 jettyで commandを使用して実行しようとするとmvn jetty:run
、サーブレットがまったく見つかりません。この問題を解決するにはどうすればよいですか?