开发环境:
前提条件:已安装以上软件并配置好jdk和maven的环境变量
创建步骤:
点击坐上角file ---》选择new ---》点击project... 如下图所示:
点击左边Spring Initializr ---》 右上角新建jdk(若有则不需要) ---》 点击next 如下图所示:
看需求修改下图中的信息后点击next(可以直接使用默认)
点击左边的Web ---》 选中中间列的Web ---》 点击next 如下图所示:
输入项目名称和保存路径 --- 》点击finish
创建的项目如下图所示:
创建HelloController类,代码如下所示:
package com.example.demo.controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestController@RequestMapping("/hello")public class HelloController { @RequestMapping("/say") public String sayHello() { return "hello world"; }}
执行DemoApplication中main方法后访问http://localhost:8080/hello/say 页面如下所示:
总结
以上所述是小编给大家介绍的Intellij IDEA创建spring-boot项目的图文教程,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
新闻热点
疑难解答
图片精选