Spring tool suite4新建maven web项目

导读:本篇文章讲解 Spring tool suite4新建maven web项目,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

Spring tool suite4运行环境需要jdk 以上,试验环境:jdk-13.0.2 + Spring Tool Suite 4.6.1.RELEASE

1、new -> maven projectSpring tool suite4新建maven web项目

 如果没有以上菜单,可以从 window -> perspective -> customize perspective -> shortcuts添加

Spring tool suite4新建maven web项目Spring tool suite4新建maven web项目

  

Spring tool suite4新建maven web项目

Spring tool suite4新建maven web项目

 如上出现空白,且很久没有出来内容时,可以在maven中运行 archetype:generate来下载依赖,然后重启eclipse,步骤:

a)添加环境变量:MAVEN_HOME 

Spring tool suite4新建maven web项目

b)更改path,写入   %MAVEN_HOME%\bin\

Spring tool suite4新建maven web项目

 c)打开cmd,在对话框输入【 mvn archetype:generate】,选择10是web相关的依赖,回车等待下载依赖文件 

Spring tool suite4新建maven web项目

 Spring tool suite4新建maven web项目

 Spring tool suite4新建maven web项目

 Spring tool suite4新建maven web项目

 2、右击项目->properties->Java Build Path -> order and export选择如下,使项目生成相应的文件包 

Spring tool suite4新建maven web项目

3、右击项目 -> properties -> project facets 

Spring tool suite4新建maven web项目

 将web对应的版本更改成与jdk对应的版本(先取消选择 -> apply ->更换版本)

Spring tool suite4新建maven web项目

 Spring tool suite4新建maven web项目

 4、web.xml中默认的版本是2.3,更改使其与所选的web版本对应

web-app 3.0
jdk版本1.6以上,开始支持jsp-config配置

<web-app  
        version="3.0"  
        xmlns="http://java.sun.com/xml/ns/javaee"  
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> 
</web-app>

web-app 3.1
jdk版本1.7以上

<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">   </web-app>


web-app 4.0约束
jdk版本1.8以上

<?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_4_0.xsd" version="4.0">
    <display-name>Archetype Created Web Application</display-name>
</web-app>

5、导入sevlet 依赖

<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.1.0</version>
    <scope>provided</scope>
</dependency>

Spring tool suite4新建maven web项目

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/71223.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!