Intellij Idea搭建Spring Boot+MyBatis工程

Intellij Idea搭建Spring Boot+MyBatis工程

由于公司业务需求和本人对学习的热爱,我从Android转Java了。做Java有很多框架要学,今天就记录一下使用Intellij Idea开发工具搭建Spring Boot工程吧。

  1. File->new->project创建新的项目:
    Intellij Idea搭建Spring Boot+MyBatis工程_第1张图片
  2. 出现如下弹窗:选择Spring Initializr(Spring初始化),选择自己JDK版本,点击next出现下一个弹窗
    Intellij Idea搭建Spring Boot+MyBatis工程_第2张图片
  3. 填写必要的信息,点击next
    Intellij Idea搭建Spring Boot+MyBatis工程_第3张图片
  4. 在下面的弹窗找那个选择项目需要的依赖,由于我创建的是Web项目,所以添加了web,和数据库MyBatis依赖,你可以根据自己的需要选择不同的依赖:
    Intellij Idea搭建Spring Boot+MyBatis工程_第4张图片

Intellij Idea搭建Spring Boot+MyBatis工程_第5张图片

  1. 点击next,确定项目保存目录,无误后点击finish,等待项目编译
    Intellij Idea搭建Spring Boot+MyBatis工程_第6张图片
    看一下最终项目目录结构:
    Intellij Idea搭建Spring Boot+MyBatis工程_第7张图片
    当然,如果你使用了maven,要先配置好maven。

你可能感兴趣的:(Java,Spring,Boot,Intellij,Idea,Java)