application.yml 380 B

12345678910111213141516171819
  1. spring:
  2. application:
  3. name: goods-service
  4. datasource:
  5. url: jdbc:mysql://localhost:3306/goods_service
  6. username: root
  7. password: 1234
  8. driver-class-name: com.mysql.cj.jdbc.Driver
  9. server:
  10. port: 8804
  11. mybatis:
  12. configuration:
  13. map-underscore-to-camel-case: true
  14. logging:
  15. level:
  16. org.springframework.web: info
  17. io.github.nnkwrik.goodsservice: debug