zoukankan      html  css  js  c++  java
  • 备份一下我的88bugs的application文档

    # 服务端口
    server.port=8083
    
    #spring.mvc.favicon.enabled=false
    
    server.servlet.context-path=/bug/
    
    dateformat=yyyy-MM-dd HH:mm:ss
    roles=role_user,role_admin
    
    spring.datasource.url=jdbc:mysql://xxxxxx:/88bugs?serverTimezone=UTC
    spring.datasource.username=root
    spring.datasource.password=root
    spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
    
    spring.datasource.max-idle=10
    spring.datasource.max-wait=10000
    spring.datasource.min-idle=5
    spring.datasource.initial-size=5
    
    
    server.tomcat.uri-encoding=UTF-8
    spring.http.encoding.charset=UTF-8
    spring.http.encoding.enabled=true
    spring.http.encoding.force=true
    spring.messages.encoding=UTF-8
    
    
    ############# log #############
    ####    TRACE < DEBUG < INFO < WARN < ERROR < FATAL###################
    logging.path=./
    logging.pattern.console=%d{yyyyMMdd HH:mm:ss} [%thread] %-5level %logger{50} - %msg%n
    logging.pattern.file=%d{yyyyMMdd HH:mm:ss} === [%thread] === %-5level === %logger{50} === - %msg%n
    logging.level.com.example.demo=DEBUG
    logging.file.max-history=0
    logging.file.max-size=10mb
    
    
    
    spring.mail.host=smtp.qq.com
    spring.mail.port=25
    spring.mail.username=xxx
    spring.mail.bcc=xxx
    spring.mail.password=xxx
    spring.mail.properties.mail.smtp.auth=true
    spring.mail.properties.mail.smtp.starttls.enable=true  
    spring.mail.properties.mail.smtp.starttls.required=true  
    #注意:在spring.mail.password处的值是需要在邮箱设置里面生成的授权码,这个不是真实的密码
    
    
    #thymelea模板配置
    spring.thymeleaf.prefix=classpath:/templates/
    spring.thymeleaf.suffix=.html
    spring.thymeleaf.mode=HTML
    spring.thymeleaf.encoding=UTF-8
    spring.thymeleaf.servlet.content-type:text/html
    
    #热部署文件,页面不产生缓存,及时更新
    spring.thymeleaf.cache=false
    spring.resources.chain.strategy.content.enabled=true
    spring.resources.chain.strategy.content.paths=/**
    #spring.mail.properties.mail.smtp.auth=true
    #spring.mail.properties.smtp.starttls.enable=true
    #spring.mail.properties.smtp.starttls.required=true
    
    
    
    #spring.thymeleaf.check-template=true
    #spring.thymeleaf.check-template-location=true
    

      

  • 相关阅读:
    聚类k-means算法详解
    将pip源更换到国内镜像
    python和nltk自然语言处理
    《python自然语言处理》第三章 加工原料文本
    装载问题(最优装载问题变形)-回溯法-深度搜索
    5-2 工作分配问题 (30分)
    5-4 最小重量机器设计问题 (20分)
    7-6 部落卫队问题 (20分)
    7-5 最佳调度问题 (30分)
    原码,补码和反码(转载)
  • 原文地址:https://www.cnblogs.com/qianjinyan/p/11124721.html
Copyright © 2011-2022 走看看