IDEA配置一个jsp

IDEA配置一个jsp

新建一个工程

IDEA配置一个jsp

然后选择Web Application

IDEA配置一个jsp

给工程起个名字

IDEA配置一个jsp

配置tomcat服务器

IDEA配置一个jsp

IDEA配置一个jsp

IDEA配置一个jsp

检查没有配置的地方,配置完然后点fix

IDEA配置一个jsp

给web项目起一个名字,然后点击ok

IDEA配置一个jsp

web文件夹下,建一个WEB-INF的文件夹,WEB-INF文件夹下建一个web.xml文件,web.xml文件写上以下代码

IDEA配置一个jsp

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
                      http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1"
         metadata-complete="true">

</web-app>

idea 2018.1以上的版本可以换成web 4.0版本

往index.jsp里面写点代码

IDEA配置一个jsp

运行Tomcat

IDEA配置一个jsp

默认浏览器打开,并显示了内容

IDEA配置一个jsp

IDEA配置一个jsp

上一篇:web 压力测试工具 K6


下一篇:js 预览 excel,js-xlsx的使用