spring: datasource: url: jdbc:mysql://127.0.0.1:3306/a_flea?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true username: root password: 123456 #连接池的配置信息 initialSize: 10 minIdle: 10 maxActive: 100 maxWait: 60000 timeBetweenEvictionRunsMillis: 60000 minEvictableIdleTimeMillis: 300000 validationQuery: SELECT 1 FROM DUAL testWhileIdle: true testOnBorrow: false testOnReturn: false poolPreparedStatements: true maxPoolPreparedStatementPerConnectionSize: 20 #服务器地址 serverUrl: http://localhost:8080 # 文件上传 fileupload: server: ${serverUrl}/fileupload filepath: c:/file ueditor: imageActionName: uploadimage imageUrlPrefix: ${serverUrl}/fileupload imagePath: /fileupload/ imageFieldName: upfile imageMaxSize: 2048
时间: 2024-02-14 21:36:12 浏览: 171
Tomcat报错: JDBC unregister 解决办法
5星 · 资源好评率100%
这是一个 YAML 格式的配置文件,其中包含了 Spring 的数据源配置、文件上传配置和 UEditor 的图片上传配置信息。其中,数据源配置包含了数据库的连接信息、连接池的配置信息、以及验证查询语句等;文件上传配置包含了文件上传服务器的地址和文件保存路径;UEditor 的图片上传配置包含了图片上传接口的名称、图片 URL 前缀、图片保存路径、图片字段名、最大上传大小等信息。这些配置信息可以被应用程序读取和使用。
阅读全文