0


IDEA社区版创建新模块时,无Spring Initializr选项

一、Spring官网

  • Spring

二、快速开始(直接访问以下网址)

  • spring initializr

三、项目设置

在这里插入图片描述

  1. Project:基于何种形式构建项目(这里选择的是Maven)
  2. Spring Boot:选择Spring Boot版本
  3. Group:域名倒写
  4. Artifact:模块名
  5. Packaging:这里以jar包形式打包
  6. Java:JDK版本
  7. Dependencies:添加依赖
  8. 选择GENERATE下载到本地项目文件夹

四、在IDEA中配置

  • 将下载好的文件复制到本地项目中在这里插入图片描述
  • 右键pom.xml选项中的添加为Maven项目

五、运行程序

  • 添加一个Hello类在这里插入图片描述
packagecom.example.demo;importorg.springframework.web.bind.annotation.RequestMapping;importorg.springframework.web.bind.annotation.RestController;//请求处理类@RestControllerpublicclassHello{//浏览器请求/hello地址,会调用hello()方法@RequestMapping("/hello")publicStringhello(){System.out.println("Hello");return"Hello";}}

本文转载自: https://blog.csdn.net/qq_50798263/article/details/136736308
版权归原作者 bzqmz 所有, 如有侵权,请联系我们删除。

“IDEA社区版创建新模块时,无Spring Initializr选项”的评论:

还没有评论