springboot項目 yml基本配置

server:
    port: 9001
    servlet:
        session:
            timeout: 30M
        context-path: /aiwtc
    tomcat:
        uri-encoding: UTF-8
spring:
    datasource:
        name: test
        url: jdbc:mysql://172.16.10.119:3306/aiwtc?useUnicode=true&characterEncoding=UTF-8&useSSL=false&allowMultiQueries=true&serverTimezone=UTC
        username: root
        password: 123456
        # 使用druid數據源
        type: com.alibaba.druid.pool.DruidDataSource
        driver-class-name: com.mysql.cj.jdbc.Driver
        filters: stat
        maxActive: 20
        initialSize: 1
        maxWait: 60000
        minIdle: 1
        timeBetweenEvictionRunsMillis: 60000
        minEvictableIdleTimeMillis: 300000
        validationQuery: select 'x'
        testWhileIdle: true
        testOnBorrow: false
        testOnReturn: false
        poolPreparedStatements: true
        maxOpenPreparedStatements: 20
    servlet:
        multipart:
            max-file-size: 3MB
            max-request-size: 3MB
    freemarker:
        cache: false
        settings:
            number_format: '0.##'
        suffix: .html
        template-loader-path: classpath:/templates/
    http:
        encoding:
            charset: UTF-8
            force: true
            enabled: true
        multipart:
                enabled: true
mybatis:
    typeAliasesPackage: com.meiman.meimanwallet
    mapperLocations: classpath:mapper/*.xml
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章