spring: application: name: auth-server #数据库相关配置 datasource: # driver-class-name: com.mysql.cj.jdbc.Driver # url: jdbc:mysql://localhost:3306/sql_test driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver # jdbc-url: jdbc:sqlserver://192.168.50.32:1433;DatabaseName=MemberData url: jdbc:sqlserver://192.168.50.32:1433;DatabaseName=MemberData username: sa password: saljhy!@# max-idle: 10 max-wait: 10000 min-idle: 5 initial-size: 5 jpa: show-sql:true # hibernate: # naming: # strategy:org.hibernate.cfg.ImprovedNamingStrategy server: port: 7777 servlet: contextPath: /uaa #web基路径 eureka: client: serviceUrl: defaultZone: http://${eureka.host:127.0.0.1}:${eureka.port:8761}/eureka/ instance: prefer-ip-address: true