application.yml 1015 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. spring:
  2. application:
  3. name: app-webservice
  4. datasource:
  5. type: com.alibaba.druid.pool.DruidDataSource
  6. driver-class-name: oracle.jdbc.driver.OracleDriver
  7. url: jdbc:oracle:thin:@115.238.142.158:1621/orcl
  8. username: tocc_haishu
  9. password: sim2013
  10. mvc:
  11. view:
  12. prefix: /WEB-INF/jsp/
  13. suffix: .jsp
  14. logging:
  15. pattern:
  16. level: debug
  17. level:
  18. com.dlsm.controller: debug
  19. com.dlsm.service: debug
  20. com.dlsm.mapper: debug
  21. mybatis:
  22. mapper-locations: classpath:com/dlsm/mapper/*.xml
  23. # config-location: classpath:sqlMappingConfig.xml
  24. pagehelper:
  25. helper-dialect: mysql
  26. reasonable: true
  27. support-methods-arguments: true
  28. params: count=countSql
  29. #与mybatis整合
  30. server:
  31. #服务端口
  32. port: 8015
  33. servlet:
  34. # 项目contextPath
  35. context-path: /
  36. tomcat:
  37. # tomcat的URI编码
  38. uri-encoding: UTF-8
  39. # tomcat最大线程数,默认为200
  40. max-threads: 800
  41. # Tomcat启动初始化的线程数,默认值25
  42. min-spare-threads: 30
  43. debug: true