Intellij IDEA创建spring-boot项目的图文教程

时间:2021-05-20

开发环境:

  • jdk版本:JDK8 
  • maven版本:maven-3.5.2  
  • 开发工具:Itellij IDEA 2017.1

前提条件:已安装以上软件并配置好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项目的图文教程,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章