标签:family bubuko ati 分享 release 16px 分享图片 next file
springboot入门学习
==================
一、springboot简介:
二、创建springboot项目,习惯使用IntelliJ IDEA工具,所以这里使用idea创建springboot
打开IntelliJ IDEA,点击【File】=>【New】 =>【Project】
弹出框,点击maven,Project SDK 选择版本1.7以上的JDK,点击next
设置项目基本信息,GroupId一般填写公司名称,ArtifactId填写项目名称,点击next
项目建好之后,继承springboot的依赖包,所有springboot项目都要继承这个依赖
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.2.RELEASE</version> <relativePath /> <!-- lookup parent from repository --> </parent>
标签:family bubuko ati 分享 release 16px 分享图片 next file
原文地址:https://www.cnblogs.com/antlord/p/9045896.html