mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-06 17:36:47 +08:00
79 lines
2.3 KiB
YAML
79 lines
2.3 KiB
YAML
spring:
|
|
profiles:
|
|
active: dev
|
|
application:
|
|
name: boe-server-all
|
|
redis:
|
|
lettuce:
|
|
pool:
|
|
max-active: 8
|
|
min-idle: 0
|
|
max-idle: 30
|
|
max-wait: 10000ms
|
|
shutdown-timeout: 100ms
|
|
jackson:
|
|
time-zone: GMT+8
|
|
mvc:
|
|
static-path-pattern: /cdn/**
|
|
async:
|
|
request-timeout: 600000
|
|
jpa:
|
|
database: MYSQL
|
|
show-sql: false
|
|
properties:
|
|
hibernate:
|
|
naming_strategy: org.hibernate.cfg.EJB3NamingStrategy
|
|
dialect: org.hibernate.dialect.MySQL5InnoDBDialect
|
|
current_session_context_class: org.springframework.orm.hibernate5.SpringSessionContext
|
|
database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
|
|
logging:
|
|
config: classpath:log/logback-${spring.profiles.active}.xml
|
|
server:
|
|
port: 9090
|
|
tomcat:
|
|
uri-encoding: UTF-8
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 500MB
|
|
max-request-size: 500MB
|
|
session:
|
|
timeout: 30m
|
|
encoding:
|
|
charset: UTF-8
|
|
enabled: true
|
|
force: true
|
|
|
|
ok:
|
|
http:
|
|
connect-timeout: 30
|
|
read-timeout: 300
|
|
write-timeout: 300
|
|
max-idle-connections: 200
|
|
keep-alive-duration: 300
|
|
boe:
|
|
domain: http://127.0.0.1
|
|
orgTree:
|
|
orgTreeList: ${boe.domain}/userbasic/org/list
|
|
orgChildTreeList: ${boe.domain}/userbasic/org/childOrgs
|
|
userBasic:
|
|
searchUserList: ${boe.domain}/userbasic/user/list
|
|
getTeacherIds: ${boe.domain}/userbasic/user/getTeacherInfo
|
|
getUserBasicInfo: ${boe.domain}/userbasic/user/getUserBasicInfo
|
|
audience:
|
|
usersByAudienceList: ${boe.domain}/userbasic/audience/memberList
|
|
getOrgUsers: ${boe.domain}/userbasic/user/getOrgUsers
|
|
statApi:
|
|
userdynamicList: ${boe.domain}/statApi/xboe/m/stat/userdynamic/list
|
|
infrasApi:
|
|
dict: ${boe.domain}/infrasApi/dict/list
|
|
manageApi:
|
|
stu:
|
|
offcourse: ${boe.domain}/manageApi/stu/offcourse/getOffCourseId
|
|
editExam: ${boe.domain}/manageApi/admin/project/editExam
|
|
coursesuilt:
|
|
getStudyStatus: ${boe.domain}/manageApi/stu/project/completeStatus
|
|
updateOrSaveCourse: ${boe.domain}/manageApi/admin/teacherRecord/updateOrSaveCourse
|
|
syncCourseStudent: ${boe.domain}/manageApi/admin/teacherRecord/syncCourseStudent
|
|
syncOnLineScore: ${boe.domain}/manageApi/admin/teacherRecord/syncOnLineScore
|
|
updateOnLineStatua: ${boe.domain}/manageApi/admin/teacherRecord/updateOnLineStatua
|
|
delOnLineById: ${boe.domain}/manageApi/admin/teacherRecord/delOnLineById |