idea上创建SpringBoot项目

idea上创建SpringBoot项目_第1张图片

 idea上创建SpringBoot项目_第2张图片

idea上创建SpringBoot项目_第3张图片

项目依赖包 springboot + mybatis + mysql

idea上创建SpringBoot项目_第4张图片

idea上创建SpringBoot项目_第5张图片

idea上创建SpringBoot项目_第6张图片

完成了。

pom.xml 文件加 

        
			com.alibaba
			druid-spring-boot-starter
			1.1.9
		

		
			org.springframework.boot
			spring-boot-starter-thymeleaf
		
		
		
			org.springframework.boot
			spring-boot-devtools
			true
		

idea上创建SpringBoot项目_第7张图片

application.yml 文件

server:
  port: 8080
spring:
  thymeleaf:
    cache: false
    prefix: classpath:/templates/html/
    suffix: .html
    encoding: UTF-8
    mode: HTML5
    servlet:
      content-type: text/html
  datasource:
    url: jdbc:mysql://localhost:3306/hrsources?useUnicode=true&characterEncoding=utf8
    username: root
    password: 1234
    # ʹdruid'
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.jdbc.Driver
    filters: stat
    maxActive: 20
    initialSize: 1
    maxWait: 60000
    minIdle: 1
    timeBetweenEvictionRunsMillis: 60000
    minEvictableIdleTimeMillis: 300000
    validationQuery: select 'x'
    testWhileIdle: true
    testOnBorrow: false
    testOnReturn: false
    poolPreparedStatements: true
    maxOpenPreparedStatements: 20
mybatis:
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: com.test.demo.*.mapper

 

你可能感兴趣的:(SpringBoot)