springboot搭建ssm

1.第一步创建SpringBootApplication

1.1 File->new->Project


image.png

1.2 这里配置项目名,包名以及maven的版本等配置


image.png

1.3 在这里勾选web,mybatis待会手动添加
image.png

1.4 项目名和地址,一个新的springboot项目就新鲜出炉了。


image.png

1.5 这是项目的结构,我把application.properties,改为了application.yml
image.png
  1. 添加maven依赖


    4.0.0
    com.example.ssm
    ssm
    0.0.1-SNAPSHOT
    jar
    test
    Demo project for Spring Boot
    
        org.springframework.boot
        spring-boot-starter-parent
        2.0.4.RELEASE
         
    
    
        UTF-8
        UTF-8
        1.8
    
    
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        

        
        
            mysql
            mysql-connector-java
            runtime
        
        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            1.1.1
        
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


  1. 配置application.yml
spring:
  datasource:
    url: jdbc:mysql://localhost:3306/xiaodong
    username: root
    password: ******
    driver-class-name: com.mysql.jdbc.Driver
  jpa:
    database: mysql
mybatis:
  #mysql扫描包
  mapper-locations: classpath*:mapper/*.xml
  #起别名。可省略写mybatis的xml中的resultType的全路径
  type-aliases-package: com.example.ssm.test.entity
  1. 在启动类加上@MapperScan(basePackages ={"com.example.ssm.test.dao"})注解,还有开启事物注解@EnableTransactionManagement
    一个最简单的springboot的ssm项目就搭建完成了。

你可能感兴趣的:(springboot搭建ssm)