shop-back-end/agileboot-api/src/main/resources/application.yml

28 lines
488 B
YAML
Raw Normal View History

2025-03-04 09:18:14 +08:00
# 开发环境配置
server:
# 服务器的HTTP端口默认为8080
port: 8090
servlet:
# 应用的访问路径
context-path: /
tomcat:
# tomcat的URI编码
uri-encoding: UTF-8
# 连接数满后的排队数默认为100
accept-count: 1000
threads:
# tomcat最大线程数默认为200
max: 800
# Tomcat启动初始化的线程数默认值10
min-spare: 100
# Spring配置
spring:
profiles:
active: basic,dev