在idea中File->new->project 选择Spring Initializr (spring初始化程序)
2.如果你用过maven name这个你应该认识了
3.选择spring组件,由于是web项目,先选择web TemplateEngines 中有FreeMark组件 sql选项中有mybatis和mysql组件
4.项目名称确认,项目存放路径选择
创建结束。 进入我们的项目:看一看目录都有什么
进入SpringbootdemoApplication,启动项目,在idea软件中这里有三种启动方式
可以看到启动成功
如果创建项目时,你选择了mysql组件,那么你要在properties文件中添加你的数据库配置,初始的properties文件时空的。
测试一下我们的项目能否被访问: 创建一个IndexController
(顺便提一下,@RestController 代替了 @Controller 和ResponseBody组合) 访问一下:
成功了。 【转载】原文地址:https://blog.csdn.net/chen649053473/article/details/80951131
|