application.yml 638 B

123456789101112131415161718192021222324
  1. spring:
  2. aop:
  3. auto: true
  4. proxy-target-class: true
  5. datasource:
  6. url : jdbc:h2:mem:example
  7. username : sa
  8. password :
  9. type: com.alibaba.druid.pool.DruidDataSource
  10. driver-class-name : org.h2.Driver
  11. cache:
  12. type: simple
  13. hsweb:
  14. app:
  15. name: hsweb示例
  16. version: 3.0.0
  17. # entity:
  18. # mappings:
  19. # - source-base-package: org.hswebframework.web.entity.organizational
  20. # target-base-package: org.hswebframework.web.example.custom.entity
  21. # mapping:
  22. # OrganizationalEntity: CustomOrganizationalEntity
  23. server:
  24. port: 8081