IDEA快速搭建spring boot项目教程(Spring initializr)
时间:2022-12-09 09:57:22|栏目:JAVA代码|点击: 次
IDEA快速搭建spring boot项目
1.创建项目
老规矩,点击Create New Project
2.编写控制器
在com.demo.springbootquickdemo包下创建controller包,在controller包下创建类QuickDemoController,内容如下:
package com.demo.springbootquickdemo.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * @Controller和@RequestBody的结合 */ @RestController public class QuickDemoController { @RequestMapping("hello") public String hello(){ return "hello world,spring-boot quick"; } }
3.运行项目
运行完之后在浏览器输入http://localhost:8080/hello,结果:
IDEA添加配置SpringBoot Spring Initializr工具
如何在idea中添加Spring Initializr工具
新手在刚刚安装idea工具后,打算构建一个SpringCloud工程,却发现找不到构建工程的Spring Initializr工具。
如下图:
接下来我们需要手动给idea下载Spring Initializr所需要的插件
1.点击file–点击settings–点击plugins
2.搜索spring – 找到Spring Assistant
3.点击install,等待加载完成后重启idea
这时候就能看到Spring Initializr工具了。
上一篇:SpringBoot如何实现一个实时更新的进度条的示例代码
栏 目:JAVA代码
下一篇:MyBatis Example And与Or混合使用的实例
本文标题:IDEA快速搭建spring boot项目教程(Spring initializr)
本文地址:http://www.codeinn.net/misctech/220977.html