Java EE 应用程序服务器是 Java Enterprise Edition(Java EE)应用程序的开发、部署和运行的基础平台。Hello World 是在 Java EE 应用程序服务器上开发、部署和运行 Java EE 应用程序的起点。以下是一个简单的 "Hello World" 应用程序以及部署和启动该应用程序的步骤。
第一步: 创建项目
package name
子命令创建一个名为 hello.world
的包。javac
命令编译以下 HelloWorldServlet
类。javac HelloWorldServlet.java第二步: 添加依赖
hello.world
中的 src
文件夹下,编辑和修改 WEB-INF
目录中的 web.xml
文件。HelloWorldServlet
类所在位置的代码。META-INF
的目录。META-INF
目录下创建一个名为 MANIFEST.MF
的文件。MANIFEST.MF
文件中添加依赖项。pom.xml
配置文件。第三步: 创建Hello World Servlet
hello.world
中的 src/main
文件夹下,创建一个名为 HelloWorldServlet.java
的文件,包含以下代码:import javax.servlet.Servlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
/**
* Hello World Servlet
*/
public class HelloWorldServlet extends HttpServlet {
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
resp.setContentType("text/html");
resp.sendRedirect("hello-world.jsp");
}
}hello.world
中的 src/main/webapp
文件夹下,创建一个名为 hello-world.jsp
的文件,包含以下代码:<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World Servlet</title>
</head>
<body>
<h1>Welcome to the Hello World Servlet</h1>
</body>
</html>第四步: 部署项目并启动服务器
src/main
文件夹。./mvnw clean install
命令完成项目的构建。java -jar target/hello-world-0.0.1-SNAPSHOT.jar
命令启动服务器的实例。http://localhost:8080/hello-world.jsp
,您将看到“Welcome to the Hello World Servlet”。没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云