配置

  • 后缀名也可以是 properties 但是不推荐
server:
  #配置端口 
  port: 8090

# 数据库配置
spring:
  application:
    # 应用名称
    name: java-web
  # 配置数据库
  datasource:
    # mysql 8 以上固定位置
    driver-class-name: com.mysql.cj.jdbc.Driver
    # 端口号后面即为数据库名称
    url: jdbc:mysql://localhost:3306/hewdatabase
    username: root
    password: 12345678
Last Updated:
Contributors: Warren