1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- spring:
- application:
- name: app-webservice
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: oracle.jdbc.driver.OracleDriver
- url: jdbc:oracle:thin:@115.238.142.158:1621/orcl
- username: tocc_haishu
- password: sim2013
- mvc:
- view:
- prefix: /WEB-INF/jsp/
- suffix: .jsp
- logging:
- pattern:
- level: debug
- level:
- com.dlsm.controller: debug
- com.dlsm.service: debug
- com.dlsm.mapper: debug
- mybatis:
- mapper-locations: classpath:com/dlsm/mapper/*.xml
- # config-location: classpath:sqlMappingConfig.xml
- pagehelper:
- helper-dialect: mysql
- reasonable: true
- support-methods-arguments: true
- params: count=countSql
- #与mybatis整合
- server:
- #服务端口
- port: 8015
- servlet:
- # 项目contextPath
- context-path: /
- tomcat:
- # tomcat的URI编码
- uri-encoding: UTF-8
- # tomcat最大线程数,默认为200
- max-threads: 800
- # Tomcat启动初始化的线程数,默认值25
- min-spare-threads: 30
- debug: true
|