找個做網(wǎng)站的人培訓(xùn)機構(gòu)還能開嗎
?一、新建工程
二、填寫新工程的基本信息
javaee8的項目可以運行在tomcat9
三、配置tomcat
?1、編輯server信息
“On frame deactivation”的意思是idea窗口發(fā)生切換時。
2、編輯部署信息
war exploded方式,這種方式是以文件夾方式部署的,支持熱加載。?
四、使用注解開發(fā)
@WebServlet(name = "Servlet01", value = "/Servlet01")
public class Servlet01 extends HttpServlet {@Overrideprotected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {PrintWriter out = response.getWriter();out.write("my first servlet is created!");}@Overrideprotected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {}
}
五、debug模式啟動Tomcat
?
這種模式能實現(xiàn)在不銷毀代表應(yīng)用的context對象的情況下重新加載類
六、在瀏覽器里測試servlet是否能處理請求
http://localhost/Servlet01?