springboot的项目搭建

1,new 一个projectspringboot的项目搭建_第1张图片
2,常见项目名字springboot的项目搭建_第2张图片
3,选择
springboot的项目搭建_第3张图片
4,存放的位置
springboot的项目搭建_第4张图片
5,配置yml文件
server:
port: 8089

#修改项目访问路径

#链接池配置
spring:
datasource:
type:
driver: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/spring_boot_demo?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&useSSL=false
username: root
password: root
#mybatis配置
mybatis:
mapper-locations: mapping/*.xml
type-aliases-package: com.yunduan.demo2.entity
#分页配置
pagehelper:
#指定分页类型
auto-dialect: mysql
6,项目的结构springboot的项目搭建_第5张图片
7,依赖配置

org.springframework.boot
spring-boot-starter-web

    
        org.springframework.boot
        spring-boot-starter-test
        test
    

    
    
        org.mybatis.spring.boot
        mybatis-spring-boot-starter
        2.1.0
    
    
        mysql
        mysql-connector-java
        8.0.13
    
    
    
        com.github.pagehelper
        pagehelper-spring-boot-starter
        1.2.3
    
    
    
        com.alibaba
        druid
        1.0.31
    
    
    
        log4j
        log4j
        1.2.17
    
    8,在启动类文件上面加@MapperScan注解

springboot的项目搭建_第6张图片
9,千万要注意的是mapper和xml文件分开放
springboot的项目搭建_第7张图片

你可能感兴趣的:(springboot)