application.yaml 673 Bytes
server:
  port: 9010

spring:
  application:
    name: student
  datasource:
    username: SZJXTUSER
    password: xst200919
    url: jdbc:sqlserver://60.190.202.57:14333;database=consultative
    driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
  thymeleaf: #thymelea模板配置
    prefix: classpath:/templates/
    suffix: .html
    mode: HTML5
    encoding: UTF-8
    cache: false
  resources:
    chain:
       strategy:
         content:
           enabled: true
           paths: /**
##mybatis
mybatis:
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: com.sincere.student.model

Logger:
  level:
    com.sincere.student.mapper: info