使用IntelliJ IDEA创建Spring Boot项目
Posted 得不到的陪伴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用IntelliJ IDEA创建Spring Boot项目相关的知识,希望对你有一定的参考价值。
方法一:
File - New -Project
创建结束后进行测试运行,修改代码如下:
package com.springboot.testone; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController @SpringBootApplication public class DemoApplication { public static void main(String[] args) { SpringApplication.run(TestOneApplication.class, args); } @GetMapping("/hello") public String test() { return "hello"; } }
点击右上角运行,如果无法运行,点击右侧Maven - Lifecycle - install
最后浏览器访问,输入http://localhost:8080/hello,页面提示hello
方法二:
访问网址:https://start.spring.io/
点击生成,解压下载文件,导入IntelliJ IDEA,添加代码和运行参考方法一。
以上是关于使用IntelliJ IDEA创建Spring Boot项目的主要内容,如果未能解决你的问题,请参考以下文章
intellij idea 2017 gradle构建spring-boot web项目
Spring Boot 使用IntelliJ IDEA创建一个web开发实例
Spring Boot 使用IntelliJ IDEA创建一个web开发实例