针对以上两个问题,分步解决
问题一:IDEA社区版没有创建Web工程的选项
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID" version="4.0" 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_4_0.xsd"> <display-name>xss</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> </web-app> |
此时 http://xmlns.jcp.org/xml/ns/javaee 和 http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd 会报红,原因是没有web.xml的约束文件。tomcat的lib中包含所需的约束文件,因此在问题二中将得到解决。
问题二:安装Tomcat插件
说明:
Deployment Directory: 项目部署的用到的文件夹
Context Path: / 表示访问项目时直接访问localhost即可,不用带上项目名
Server Port: 改成80端口访问项目时不用输入端口号了
包含servlet-api.jar等开发需要的依赖包,其中web.xml文件的约束文件也包含在内
添加之后web.xml的报红也会解决
至此,web项目已构建完毕,随后可以创建Servlet并访问成功。