1.使用idea集成开发工具创建Springboot项目
2.点击next
3.完成之后选择next,这里是idea提供的一些starter,想使用什么功能就勾选,当然什么都不勾也可以,后面在pom.xml上添加依赖即可
4.最后就是项目名和路径配置了,配置完成点击finish
5.基本目录结构
被标记的那几个东西删不删都可以,看自己心情。其中SpringbootMybtisApplication.java是SpringBoot的引导类(就是那个像开关的类),这个类是SpringBoot自动配置的,application.propretis是配置文件,配置如数据库信息、包扫描等等各种配置都在这个文件里面配置。
6.pom.xml的配置
其中第一个是必须要配置的,毕竟是基于spring框架的。其他的可以根据自己的需求选装。
7.说到引入依赖,maven会首先访问国外的中央仓库,由于众所周知的原因,国内下载是真的慢,一开始我就等了一个多小时。还好我们国内也有很多的仓库。选择项目右键,选择maven,再点击图中所示。
如果之前没有创建“setting.xml”,就会显示Create“setting.xml”,点击它。进入以下画面,如果不是也没关系,因为我也忘了是什么样。
我们只需要将以下代码替换掉原代码就可以享受高速下载了
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<!-- mirror
| Specifies a repository mirror site to use instead of a given repository. The repository that
| this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
| for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
|
<mirror>
<id>mirrorId</id>
<mirrorOf>repositoryId</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://my.repository.com/repo/path</url>
</mirror>
-->
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>uk</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://uk.maven.org/maven2/</url>
</mirror>
<mirror>
<id>CN</id>
<name>OSChina Central</name>
<url>http://maven.oschina.net/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>nexus</id>
<name>internal nexus repository</name>
<url>http://repo.maven.apache.org/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
</settings>
8.验证SpringBoot是否配置成功
8.1创建一个控制类
8.2点击运行
8.3application.propretis的配置
8.4在浏览器输入访问地址,看到返回的结果就证明成功了。