0
  1. 我为企业 Java 开发人员安装了 Eclipse IDE。
  2. 我去了菜单帮助 - > Eclipse Marketplace ...并安装了“Spring Tools 4(又名 Spring Tools Suite 4)”

我的目标是创建第一个简单的 Spring MVC 应用程序。所以我去了youtube,找到了一个教程视频。在视频中,建议执行步骤New -> Other... -> Spring,应该会出现以下列表:

  • 导入 Spring 入门内容
  • Spring Bean 配置文件
  • Spring Bean 定义
  • 春季项目
  • 春屋项目
  • 春季入门项目
  • Spring Web 流定义文件

建议选择“Spring Project”。但我从该列表中只有两项:

  • 导入 Spring 入门内容
  • 春季入门项目

我是否安装了错误的东西?我应该选择什么来创建 Spring MVC 项目(以及哪些选项)?

4

3 回答 3

1

I also had trouble with STS 4 and later on I installed 3.9 and it worked just fine. I recommend you downloading STS if you want to build spring / spring boot projects [ not compulsory though ] .

You can see spring legacy project for spring MVC option and it generates a good project structure which comes with ready to run code and standard project structure. Hope this helps.

于 2020-07-04T15:12:41.290 回答
1

如果需要,您可以创建一个Dynamic web project并 cpnvert 到 maven 项目,或者可以自己在类路径中添加依赖项作为 jars。

否则,您可以创建maven project并添加文件,例如web.xml和您spring-mvc-servlet.xml自己。

您可以使用本教程,因为这将为您提供一些如何在 eclipse 中启动 spring mvc 项目的想法。https://crunchify.com/simplest-spring-mvc-hello-world-example-tutorial-spring-model-view-controller-tips/

于 2020-07-04T13:16:24.847 回答
0

您在视频中提到的创建项目的选项列表是您在使用旧 Spring Tool Suite 3 时获得的选项列表。

新的 Spring Tools 4 for Eclipse 减少了创建 Spring 项目的选项集,并且专注于基于 Spring Boot 的项目。如果您现在开始使用 Spring,我强烈建议您开始使用 Spring Boot 并开始使用 Spring Boot 项目,使用这两个选项之一来创建 Spring Tools 4 附带的 Spring Boot 项目。

Spring Tool Suite 3 中的旧向导(包括您可以从中创建的 Spring MVC 项目)不是基于 Spring Boot,也不是我建议开始使用的。

于 2020-07-05T14:41:40.310 回答