当前位置:   article > 正文

intelliJ IDEA2021 从零开始配置JAVA servlet环境 JSP教程_servlet.api如何加入java编码环境

servlet.api如何加入java编码环境

开发平台: macos 16, tomcat9, idea 2021

1 创建工程

选中maven -camel-archetype-webapp

 

工程如图所示

2 配置tomcat

点击配置tomacat server local

注意URL我这里是http://localhosot:8080/

点击deployment 添加war exploded, 注意下面的访问路径, 之后部署好了之后就通过浏览器访问这个路径

如果报错如下, 那么就是这个deployment路径设置问题

404 The origin server did not find a current representation for the target resou

 

最后点击运行就会出来这个界面

2 添加servlet

如果要手动设置模块编译输出路径, 就在project structure/module/paths里面设置

 

现在需要添加servlet-api.jar, 打开project structure/module/dependencies ,添加jars or  dir,  选中tomat安装目录下lib下的servlet-api.jar

 

在src/main下面添加java文件夹,输入目录后下面会弹出maven, 直接点击就可以了

  1. import javax.servlet.ServletException;
  2. import javax.servlet.annotation.WebServlet;
  3. import javax.servlet.http.HttpServlet;
  4. import javax.servlet.http.HttpServletRequest;
  5. import javax.servlet.http.HttpServletResponse;
  6. import java.io.IOException;
  7. @WebServlet({"/test", "/get"})
  8. public class test extends HttpServlet {
  9. @Override
  10. protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  11. resp.getWriter().write("POST Method");
  12. }
  13. @Override
  14. protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  15. resp.getWriter().write("GET Method");
  16. }
  17. }

在main/java下新建一个test.java, 然后直接运行, 路径是/xxx/get

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/688819
推荐阅读
相关标签
  

闽ICP备14008679号