🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
**1. 继承HttpServlet** ```java /** * @WebServlet注解指定请求地址 */ @WebServlet("/index") public class IndexServlet extends HttpServlet { @Override public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { this.doPost(request, response); } @Override public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { request.setAttribute("info", "Index"); request.getRequestDispatcher("WEB-INF/views/index.jsp").forward(request, response); } } ``` **2. `WEB-INF/views/index.jsp`页面** ```html <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> <!DOCTYPE html> <html> <head> <title>Index</title> </head> <body> <h1>${ info }</h1> </body> </html> ``` **3. 访问:http://localhost:8080/web/index** ![](https://img.kancloud.cn/4b/48/4b4813c1d1db7ab1a985aebe596c30c8_1507x303.png)