zoukankan      html  css  js  c++  java
  • springboot中yml常用配置

    server:
      port: 8080
    spring:
      datasource: #数据源配置
        driver-class-name: com.mysql.cj.jdbc.Driver
        url: jdbc:mysql://127.0.0.1:3306/zys_erp?useUnicode=true&characterEncoding=utf8&useSSL=true&serverTimezone=UTC
        username: root
        password: root
        druid:
          max-active: 10
          min-idle: 5
          max-wait: 5000
          initial-size: 5
          validation-query: select 1
          stat-view-servlet:
            enabled: true
    #        login-username: admin
    #        login-password: admin
    #        allow:
    #        deny:
            url-pattern: "/druid/*"
          web-stat-filter:
            enabled: true
            url-pattern: "/druid/**"
            exclusions: '*.js,*.gif,*.jpg,*.jpeg,*.png,*.css,*.ico,*.jsp,/druid/*'
            principal-session-name: ''
            session-stat-enable: true
            session-stat-max-count: 1000
      thymeleaf:
        cache: false
      jackson:
        date-format: yyyy-MM-dd HH:mm:ss
        time-zone: GMT+8
      #redis
      redis:
        host: www.leige.tech
        password: 123456
        port: 6390
        jedis:
          pool:
            max-active: 20
            max-idle: 8
            min-idle: 0
            max-wait: 2000
    
    
    #shiro的配置
    shiro:
      hash-algorithm-name: md5
      hash-iterations: 2
      login-url: /index.html
      unauthorized-url: /unauthorized.html
      anon-urls:
        - /api/login/doLogin*
        - /api/druid/**
        - /api/swagger-ui.html
        - /api/webjars/**
        - /api/swagger-resources/**
        - /api/v2/**
        - /api/login/captcha
        - /api/login/checkLogin
      logout-url: /api/login/logout*
      authc-urls:
        - /**
    #mybatisplus的配置
    mybatis-plus:
      configuration:
        log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
      mapper-locations: classpath:mapper/*/*Mapper.xml
    
    
    #fastdfs设置
    fdfs:
      so-timeout: 2500       # 读取时间
      connect-timeout: 5000   # 连接超时时间
      thumb-image:           # 缩略图
         100
        height: 100
      tracker-list:          # tracker服务配置地址列表
        - www.leige.tech:22122
    upload:
      base-url: www.leige.tech/
      allow-types:
        - image/jpeg
        - image/png
        - image/bmp
  • 相关阅读:
    ajax_基础1
    省市数据库脚本TblArea.
    c#中怎么使用dos命
    Lambda表达式
    面试收录
    .Net牛逼程序猿要懂得
    Web.config 配置文件
    sql 查询所有数据库、表名、表字段总结
    Json在net与页面之间的传递
    『转』SAP统驭科目解释
  • 原文地址:https://www.cnblogs.com/xiaozhang666/p/12400744.html
Copyright © 2011-2022 走看看