Intellij IDEA 搭建Spring Boot项目
Posted 若兰明月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Intellij IDEA 搭建Spring Boot项目相关的知识,希望对你有一定的参考价值。
Intellij IDEA 搭建Spring Boot项目
标签(空格分隔): SpringBoot JAVA后台
第一步
选择File –> New –> Project –>Spring Initialer –> 点击Next
第二步
自己修改 Group 和 Artifact 字段名 –>点击next
第三步
第四步
点击finish
第五步
等待编译完成(这个貌似翻墙会好点,要不然下载依赖特别慢。。。)
第六步
第七步(最终目录结构)
第八步
显示hello world
我们需要编辑一个HelloController类用于转发链接
@RestController
@EnableAutoConfiguration
public class HelloController
@RequestMapping("/hello")
private String index()
return "Hello World!";
第九步
启动项目
方式一
方式二
启动之后可以看控制台显示的是如下:
见证奇迹的时刻
- 我们在游览器中输入如下的http://localhost:8080/hello –>显示的如下界面代表我们项目成功了
写在最后
第一步的那个next,如果感觉编译慢的话,或有有可能会加载失败,这个时候可以
然后找到这个文件并解压
不过导入之后还是要下载编译的,祝成功哈
测试项目地址
- https://github.com/wuyinlei/springtest
- https://github.com/wuyinlei/springtest
- https://github.com/wuyinlei/springtest
以上是关于Intellij IDEA 搭建Spring Boot项目的主要内容,如果未能解决你的问题,请参考以下文章
Intellij IDEA 搭建Spring Boot项目配置事务和Redis缓存
使用intellij idea搭建MAVEN+SSM(Spring+SpringMVC+MyBatis)框架
项目笔记: 使用intellij idea搭建MAVEN+SSM(Spring+SpringMVC+MyBatis)框架
详解intellij idea搭建SSM框架(spring+maven+mybatis+mysql+junit)(上)