Files
erp_sb/erp_client_sb/src/main/resources/application.yml
悠山 02858146b3 style(components): format CSS styles in Vue components
- Remove extra spaces in CSS property declarations
- Consolidate multi-line CSS rules into single lines
- Maintain consistent formatting across component styles
- Improve readability by removing unnecessary line breaks
- Ensure uniform styling structure in scoped CSS blocks
2025-11-28 17:14:00 +08:00

71 lines
1.8 KiB
YAML

javafx:
title: ERP系统
appicons: /icon/icon.png
stage:
width: 1280
height: 800
# style: DECORATED # javafx.stage.StageStyle [DECORATED, UNDECORATED, TRANSPARENT, UTILITY, UNIFIED]
# resizable: false
spring:
main:
lazy-initialization: true
servlet:
multipart:
max-file-size: 50MB
max-request-size: 50MB
datasource:
url: jdbc:sqlite:./data/erp-cache.db?journal_mode=WAL&synchronous=NORMAL&cache_size=10000&temp_store=memory&busy_timeout=30000
driver-class-name: org.sqlite.JDBC
username:
password:
hikari:
maximum-pool-size: 1
connection-timeout: 60000
idle-timeout: 300000
max-lifetime: 900000
auto-commit: false
jpa:
database-platform: org.hibernate.community.dialect.SQLiteDialect
hibernate:
ddl-auto: update
show-sql: false
properties:
hibernate:
format_sql: true
jdbc:
batch_size: 20
order_inserts: true
order_updates: true
connection:
provider_disables_autocommit: true
open-in-view: false
server:
port: 8081
address: 127.0.0.1
# 外部API服务配置
api:
server:
# 主服务器API配置
#base-url: "http://8.138.23.49:8085"
#base-url: "http://192.168.1.89:8085"
base-url: "http://127.0.0.1:8085"
paths:
monitor: "/monitor/client/api"
login: "/monitor/account/login"
heartbeat: "/monitor/client/api/heartbeat"
error: "/monitor/client/api/error"
data: "/monitor/client/api/data"
alibaba1688: "/monitor/client/api/alibaba1688"
version: "/system/version/check"
# 项目信息配置
project:
version: @project.version@
build:
time: @maven.build.timestamp@
logging:
level:
com.tashow.erp: INFO
org.hibernate.SQL: WARN
org.hibernate.type.descriptor.sql.BasicBinder: WARN