- 新增卖精灵账号管理功能,支持多账号切换 - 实现账号增删改查接口与前端交互逻辑 -优化打开跟卖精灵流程,增加账号选择界面 - 添加账号权限限制与订阅升级提醒 - 完善后端账号实体类及数据库映射 - 更新系统控制器以支持指定账号启动功能- 调整HTTP请求路径适配新工具模块路由- 升级客户端版本至2.5.3并优化代码结构
67 lines
1.7 KiB
YAML
67 lines
1.7 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: false
|
|
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"
|
|
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
|
|
|