Files
AIGC/demo/src/main/resources/application.properties
AIGC Developer dbd06435cb feat: 完成管理员密码登录修复和项目清理
- 修复BCryptPasswordEncoder密码验证问题
- 实现密码设置提示弹窗功能(仅对无密码用户显示一次)
- 优化修改密码逻辑和验证流程
- 更新Welcome页面背景样式
- 清理临时SQL文件和测试代码
- 移动数据库备份文件到database/backups目录
- 删除不必要的MD文档和临时文件
2025-11-21 16:10:00 +08:00

53 lines
1.6 KiB
Properties
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

spring.application.name=demo
spring.messages.basename=messages
spring.thymeleaf.cache=false
spring.profiles.active=dev
# 服务器配置
server.address=0.0.0.0
server.port=8080
# 文件上传配置扩大请求体大小以支持大图片Base64编码
spring.servlet.multipart.max-file-size=500MB
spring.servlet.multipart.max-request-size=600MB
spring.servlet.multipart.enabled=true
# Tomcat 最大POST大小
server.tomcat.max-http-post-size=600MB
# 应用配置
app.upload.path=uploads
app.video.output.path=outputs
# JWT配置
jwt.secret=aigc-demo-secret-key-for-jwt-token-generation-2025
jwt.expiration=86400000
# AI API配置
ai.api.base-url=http://116.62.4.26:8081
ai.api.key=ak_5f13ec469e6047d5b8155c3cc91350e2
# SpringDoc OpenAPI (Swagger) 配置
springdoc.api-docs.path=/v3/api-docs
springdoc.swagger-ui.path=/swagger-ui.html
springdoc.swagger-ui.operationsSorter=method
springdoc.swagger-ui.tagsSorter=alpha
springdoc.swagger-ui.tryItOutEnabled=true
springdoc.swagger-ui.filter=true
springdoc.swagger-ui.display-request-duration=true
springdoc.swagger-ui.doc-expansion=none
springdoc.swagger-ui.default-models-expand-depth=1
springdoc.swagger-ui.default-model-expand-depth=1
# 腾讯云COS对象存储配置
# 是否启用COS设置为true后需要配置下面的参数
tencent.cos.enabled=false
# 腾讯云SecretId从控制台获取https://console.cloud.tencent.com/cam/capi
tencent.cos.secret-id=
# 腾讯云SecretKey
tencent.cos.secret-key=
# COS区域例如ap-guangzhou、ap-shanghai、ap-beijing等
tencent.cos.region=ap-guangzhou
# COS存储桶名称例如my-bucket-1234567890
tencent.cos.bucket-name=