Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李丛阳
education
Commits
e9e5b7d5
Commit
e9e5b7d5
authored
Sep 30, 2019
by
root
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改接口
parent
a5af91ce
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
72 additions
and
917 deletions
+72
-917
BLessonController.java
...cisoft/business/blesson/controller/BLessonController.java
+5
-6
RecommendLessonDTO.java
.../org/rcisoft/business/blesson/dto/RecommendLessonDTO.java
+17
-0
BLessonService.java
.../org/rcisoft/business/blesson/service/BLessonService.java
+3
-3
BLessonServiceImpl.java
...oft/business/blesson/service/impl/BLessonServiceImpl.java
+20
-4
Global.java
src/main/java/org/rcisoft/common/component/Global.java
+1
-102
application-dev.yml
src/main/resources/application-dev.yml
+1
-28
application-prod.yml
src/main/resources/application-prod.yml
+25
-97
application-prod103.yml
src/main/resources/application-prod103.yml
+0
-168
application-prod106.yml
src/main/resources/application-prod106.yml
+0
-168
application-prod125.yml
src/main/resources/application-prod125.yml
+0
-167
application-prod172.yml
src/main/resources/application-prod172.yml
+0
-158
logback-spring.xml
src/main/resources/logback-spring.xml
+0
-16
No files found.
src/main/java/org/rcisoft/business/blesson/controller/BLessonController.java
View file @
e9e5b7d5
...
...
@@ -277,14 +277,13 @@ public class BLessonController extends PaginationController<BLesson> {
businessId
);
}
// @ApiOperation(value="619 指派课程", notes="根据ID指派课程")
// @ApiImplicitParam(name = "businessId", value = "businessId", required = true, dataType = "varchar")
// @PostMapping(value = "/appoint")
// public Result appoint(CurUser curUser,String businessId,BindingResult bindingResult) {
// PersistModel data = bLessonService.appointBLesson(curUser,businessId);
// @ApiOperation(value="619 推荐课程", notes="根据ID推荐课程")
// @PostMapping(value = "/recommend")
// public Result recommend(CurUser curUser,@Valid RecommendLessonDTO recommendLessonDTO,BindingResult bindingResult) {
// PersistModel data = bLessonService.recommendBLesson(curUser,recommendLessonDTO);
// return Result.builder(data,
// MessageConstant.MESSAGE_ALERT_SUCCESS,
// MessageConstant.MESSAGE_ALERT_ERROR,
//
businessId
);
//
recommendLessonDTO
);
// }
}
src/main/java/org/rcisoft/business/blesson/dto/RecommendLessonDTO.java
0 → 100644
View file @
e9e5b7d5
package
org
.
rcisoft
.
business
.
blesson
.
dto
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
@Data
public
class
RecommendLessonDTO
{
@ApiModelProperty
(
value
=
"课程Id"
)
private
String
lessonId
;
@ApiModelProperty
(
value
=
"推荐范围(人)多人之间用','隔开"
)
private
String
recommendPerson
;
@ApiModelProperty
(
value
=
"推荐范围(部门)多人之间用','隔开"
)
private
String
recommendDepart
;
}
src/main/java/org/rcisoft/business/blesson/service/BLessonService.java
View file @
e9e5b7d5
...
...
@@ -112,11 +112,11 @@ public interface BLessonService{
PersistModel
releaseBLesson
(
String
id
);
/**
*
指派
课程
* @param
id
*
推荐
课程
* @param
recommendLessonDTO
* @return
*/
PersistModel
appointBLesson
(
CurUser
curUser
,
String
id
);
PersistModel
recommendBLesson
(
CurUser
curUser
,
RecommendLessonDTO
recommendLessonDTO
);
/**
* 课程培训条件查询
...
...
src/main/java/org/rcisoft/business/blesson/service/impl/BLessonServiceImpl.java
View file @
e9e5b7d5
...
...
@@ -257,10 +257,26 @@ public class BLessonServiceImpl implements BLessonService {
}
@Override
public
PersistModel
appointBLesson
(
CurUser
curUser
,
String
id
)
{
//判断是否已学习插入或
//
public
PersistModel
recommendBLesson
(
CurUser
curUser
,
RecommendLessonDTO
recommendLessonDTO
)
{
////
// if (StringUtils.isNotEmpty(recommendLessonDTO.getRecommendPerson()) || StringUtils.isNotEmpty(recommendLessonDTO.getRecommendDepart())){
// BViewrange bViewrange = setBViewrangeInfo(model);
// //插入可见范围表
// bViewrangeRepository.insertSelective(bViewrange);
// //插入可见范围子表
// List<BViewrangeSon> bViewrangeSons = new ArrayList<>();
// //model.getViewRangePerson()不为空 新建bViewrangeSon对象放入bViewrangeSons中
// if (StringUtils.isNotEmpty(model.getViewRangePerson())){
// String[] viewRangePerson = model.getViewRangePerson().split(",");
// bViewrangeSons = addBViewrangeSon(bViewrangeSons,viewRangePerson,"0",bViewrange.getBusinessId());
// }
// if (StringUtils.isNotEmpty(model.getViewRangeDepart())){
// String[] viewRangeDepart = model.getViewRangeDepart().split(",");
// bViewrangeSons = addBViewrangeSon(bViewrangeSons,viewRangeDepart,"1",bViewrange.getBusinessId());
// }
// //插入子表
// bViewrangeRepository.insertBViewrangeSons(bViewrangeSons);
// }
return
null
;
}
...
...
src/main/java/org/rcisoft/common/component/Global.java
View file @
e9e5b7d5
...
...
@@ -26,21 +26,13 @@ public class Global {
/*服务器地址*/
@Value
(
"${global.other.server_url}"
)
private
String
SERVER_URL
;
/*服务器保存图片路径*/
@Value
(
"${global.path.base_upload_server_location}"
)
private
String
BASE_UPLOAD_SERVER_LOCATION
;
/*容器外路径*/
@Value
(
"${global.path.physical_upload_server_location}"
)
private
String
PHYSICAL_UPLOAD_SERVER_LOCATION
;
/*课程相关文件路径*/
@Value
(
"${global.path.course_location}"
)
private
String
COURSE_LOCATION
;
...
...
@@ -53,9 +45,6 @@ public class Global {
@Value
(
"${global.path.sl_location}"
)
private
String
SL_LOCATION
;
/*服务器freemarker模板位置*/
@Value
(
"${global.path.freemarker_location}"
)
private
String
FREEMARKER_LOCATION
;
/*服务器上传路径*/
@Value
(
"${global.path.image_location}"
)
...
...
@@ -93,92 +82,17 @@ public class Global {
@Value
(
"${global.other.cut_pdf_num}"
)
private
Integer
CUT_PDF_NUM
;
/*excel模板位置*/
@Value
(
"${global.path.excel_template_location}"
)
private
String
EXCEL_TEMPLATE_LOCATION
;
/*课程封面路径*/
@Value
(
"${global.path.cource_logo_location}"
)
private
String
COURSE_LOGO_LOCATION
;
/*课程代码路径*/
@Value
(
"${global.path.cource_code_location}"
)
private
String
COURSE_CODE_LOCATION
;
/*课程工程代码路径*/
@Value
(
"${global.path.cource_project_location}"
)
private
String
COURSE_PROJECT_LOCATION
;
/*图片路径*/
@Value
(
"${global.path.images_location}"
)
private
String
IMAGES_LOCATION
;
/*课程默认图片路径*/
@Value
(
"${global.default_location.course}"
)
private
String
DEFAULT_COURSE_LOCATION
;
/*默认学生头像路径*/
@Value
(
"${global.default_location.student}"
)
private
String
DEFAULT_STUDENT_LOCATION
;
/*默认教师头像路径*/
@Value
(
"${global.default_location.teacher}"
)
private
String
DEFAULT_TEACHER_LOCATION
;
/*默认轮播图路径*/
@Value
(
"${global.default_location.carousel}"
)
private
String
DEFAULT_CAROUSEL_LOCATION
;
/*开课封面路径*/
@Value
(
"${global.path.lanch_logo_location}"
)
private
String
LANCH_LOGO_LOCATION
;
/*mdtup*/
@Value
(
"${global.path.md_file_location}"
)
private
String
MD_FILE_LOCATION
;
/*是否是服务器(为1代表是服务器)*/
@Value
(
"${global.other.is_server_linux}"
)
private
String
IS_SERVER_LINUX
;
/*code长度限制*/
@Value
(
"${global.other.max_code_length}"
)
private
String
MAX_CODE_LENGTH
;
/*用户默认密码*/
@Value
(
"${global.password.default}"
)
private
String
DEFAULT_PASSWORD
;
/*password最小长度*/
@Value
(
"${global.password.min_password}"
)
private
String
PASSWORD_MIN_PASSWORD
;
/*password最大长度*/
@Value
(
"${global.password.max_password}"
)
private
String
PASSWORD_MAX_PASSWORD
;
/*che的配置模板路径*/
@Value
(
"${global.path.che_def_template_location}"
)
private
String
CHE_DEF_TEMPLATE_LOCATION
;
/*che初始化项目目录*/
@Value
(
"${global.path.che_project_init_location}"
)
private
String
CHE_PROJECT_INIT_LOCATION
;
/*管理员Code*/
@Value
(
"${global.code.admin}"
)
private
String
adminCode
;
/*教师Code*/
@Value
(
"${global.code.teacher}"
)
private
String
teacherCode
;
/*学生Code*/
@Value
(
"${global.code.student}"
)
private
String
studentCode
;
/*libreoffice ip*/
@Value
(
"${libreoffice.ip}"
)
...
...
@@ -188,19 +102,4 @@ public class Global {
@Value
(
"${libreoffice.port}"
)
private
Integer
libreofficePort
;
/*导出的学生作业暂存路径*/
@Value
(
"${global.path.student_code_location}"
)
private
String
STUDENT_CODE_LOCATION
;
/*openOffice安装路径*/
@Value
(
"${global.other.open_office_home}"
)
private
String
OPEN_OFFICE_HOME
;
@Value
(
"${global.path.xml_location}"
)
private
String
XML_LOCATION
;
}
src/main/resources/application-dev.yml
View file @
e9e5b7d5
...
...
@@ -61,28 +61,17 @@ spring:
max-request-size
:
100MB
global
:
default_location
:
course
:
/default/course.jpg
student
:
/default/student.png
teacher
:
/default/teacher.png
carousel
:
/default/carousel.jpg
lk
:
publicalias
:
publiccert
storePwd
:
rcrtcyedu2
subject
:
edu2
licPath
:
/lk/license.lic
pubPath
:
/lk/publicCerts.store
password
:
default
:
123456
min_password
:
6
max_password
:
16
path
:
base_upload_server_location
:
E:/eduServer
physical_upload_server_location
:
E:/eduServer
course_location
:
course
lesson_location
:
lesson
sl_location
:
sl
freemarker_location
:
/freemarker
image_location
:
/upload
video_location
:
video
audio_location
:
audio
...
...
@@ -91,27 +80,11 @@ global:
ppt_location
:
ppt
pdf_location
:
pdf
cut_pdf_location
:
cutPdf
excel_template_location
:
excel-template/
cource_logo_location
:
/course/logo
images_location
:
/images
lanch_logo_location
:
/lanch/logo
md_file_location
:
mdFiles
che_def_template_location
:
/WEB-INF/classes/che-def-jsonfile/java-mysql.json
che_project_init_location
:
/working/dockervolume/chedir/project
cource_code_location
:
code
cource_project_location
:
project
student_code_location
:
studentCode
xml_location
:
/xmlTemp
other
:
server_url
:
http://106.2.3.134:10180/eduServer
is_server_linux
:
5
max_code_length
:
15
open_office_home
:
D:/oppenOffice/openOffice
cut_pdf_num
:
30
code
:
admin
:
ROLE_1001
teacher
:
ROLE_1002
student
:
ROLE_1003
libreoffice
:
ip
:
192.168.1.125
...
...
src/main/resources/application-prod.yml
View file @
e9e5b7d5
server
:
port
:
8081
context-path
:
/edu
#ContextPath must start with '/' and not end with '/'
tomcat
:
max-threads
:
300
servlet
:
context-path
:
/
#uri-encoding: UTF-8
type
:
dev1
#logging:
# path:/working/resource/eduServer/SpringBootLog
# level:
# root: INFO
# org.springframework.web:
info
# org.springframework.web:
DEBUG
druid
:
url
:
jdbc:mysql://
edu2
_mysql:3306/edu_db?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false
url
:
jdbc:mysql://
mt
_mysql:3306/edu_db?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false
username
:
root
password
:
123456
password
:
91isoft
initial-size
:
1
min-idle
:
1
max-active
:
20
...
...
@@ -41,129 +42,56 @@ pagehelper:
spring
:
jackson
:
default-property-inclusion
:
non_null
http
:
# encoding:
# force: true
# charset: UTF-8
# enabled: true
multipart
:
enabled
:
true
max-file-size
:
500Mb
max-request-size
:
1000Mb
date-format
:
yyyy-MM-dd
time-zone
:
GMT+8
mvc
:
throw-exception-if-no-handler-found
:
true
resources
:
add-mappings
:
false
redis
:
host
:
edu2_redis
port
:
6379
pool
:
max-idle
:
50
max-active
:
1000
min-idle
:
5
max-wait
:
-1
database
:
0
password
:
'
'
timeout
:
3600
freemarker
:
charset
:
UTF-8
suffix
:
.ftl
template-loader-path
:
classpath:/templates/
lxc
:
lxc_prefix
:
lessonLxc
lxc_ports
:
lxcPorts
lxc_dockerfilePath
:
/eduLxc
lxc_initPort
:
20001
lxc_maxPort
:
30000
lxc_minu
:
30
lxc_isRemote
:
1
lxc_endlineTime
:
10
lxc_delayTime
:
30
springfox
:
documentation
:
swagger
:
v2
:
path
:
/api-docs
jwt
:
header
:
Authorization
secret
:
mySecret
expiration
:
604800
tokenHead
:
"
Bearer
"
login_secert_key
:
"
base64EncodedSecretKey"
route
:
authentication
:
path
:
"
/login"
refresh
:
"
/refresh"
register
:
"
/register"
servlet
:
multipart
:
max-file-size
:
100MB
max-request-size
:
100MB
global
:
default_location
:
course
:
/default/course.jpg
student
:
/default/student.png
teacher
:
/default/teacher.png
carousel
:
/default/carousel.jpg
lk
:
publicalias
:
publiccert
storePwd
:
rcrtcyedu2
subject
:
edu2
licPath
:
/lk/license.lic
pubPath
:
/lk/publicCerts.store
password
:
default
:
123456
min_password
:
6
max_password
:
16
path
:
base_upload_server_location
:
/working/resource/eduServer/
physical_upload_server_location
:
/working/dockervolume/edu2_data_ubuntu/eduServer
course_location
:
course
lesson_location
:
lesson
sl_location
:
sl
freemarker_location
:
/freemarker
image_location
:
/upload
video_location
:
video
audio_location
:
audio
temp_location
:
temp
file_location
:
file
ppt_location
:
ppt
pdf_location
:
pdf
cut_pdf_location
:
cutPdf
excel_template_location
:
excel-template/
cource_logo_location
:
/course/logo
images_location
:
/images
lanch_logo_location
:
/lanch/logo
md_file_location
:
mdFiles
che_def_template_location
:
/WEB-INF/classes/che-def-jsonfile/java-mysql.json
che_project_init_location
:
/working/dockervolume/chedir/project
cource_code_location
:
code
cource_project_location
:
project
student_code_location
:
studentCode
xml_location
:
/xmlTemp
other
:
server_url
:
http://106.2.3.134:10180/eduServer
is_server_linux
:
1
max_code_length
:
15
open_office_home
:
D:/oppenOffice/openOffice
is_server_linux
:
5
cut_pdf_num
:
30
code
:
admin
:
ROLE_1001
teacher
:
ROLE_1002
student
:
ROLE_1003
java
:
'
001'
html
:
'
002'
java_simple
:
'
0001'
java_project
:
'
0002'
html_simple
:
'
1001'
html_project
:
'
1002'
serverLxc
:
ip
:
120.52.179.75
username
:
root
password
:
91isoft_xunda
libreoffice
:
ip
:
192.168.1.125
port
:
10188
mt
:
api
:
http://221.239.114.20:6789/api/
libreoffice
:
ip
:
edu2_libre
port
:
8997
#ip:edu2_libre
#port:8997
\ No newline at end of file
eureka
:
instance
:
hostname
:
localhost
client
:
register-with-eureka
:
false
fetch-registry
:
false
\ No newline at end of file
src/main/resources/application-prod103.yml
deleted
100644 → 0
View file @
a5af91ce
server
:
port
:
8081
context-path
:
/edu
#ContextPath must start with '/' and not end with '/'
tomcat
:
max-threads
:
300
#uri-encoding: UTF-8
#logging:
# level:
# root: INFO
# org.springframework.web: DEBUG
druid
:
url
:
jdbc:mysql://edu2_mysql:3306/edu_db?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false
username
:
root
password
:
123456
initial-size
:
1
min-idle
:
1
max-active
:
20
test-on-borrow
:
true
mybatis
:
mapper-locations
:
classpath:mapper/**/**/*.xml
mapper
:
mappers
:
-
org.rcisoft.core.base.BaseMapper
not-empty
:
false
identity
:
MYSQL
pagehelper
:
helperDialect
:
mysql
reasonable
:
true
supportMethodsArguments
:
true
params
:
count=countSql
spring
:
jackson
:
default-property-inclusion
:
non_null
date-format
:
yyyy-MM-dd
time-zone
:
GMT+8
http
:
# encoding:
# force: true
# charset: UTF-8
# enabled: true
multipart
:
enabled
:
true
max-file-size
:
500Mb
max-request-size
:
1000Mb
mvc
:
throw-exception-if-no-handler-found
:
true
resources
:
add-mappings
:
false
redis
:
host
:
edu2_redis
port
:
6379
pool
:
max-idle
:
50
max-active
:
1000
min-idle
:
5
max-wait
:
-1
database
:
0
password
:
'
'
timeout
:
3600
freemarker
:
charset
:
UTF-8
suffix
:
.ftl
template-loader-path
:
classpath:/templates/
lxc
:
lxc_prefix
:
lessonLxc
lxc_ports
:
lxcPorts
lxc_dockerfilePath
:
/eduLxc
lxc_initPort
:
20001
lxc_maxPort
:
30000
lxc_minu
:
30
lxc_isRemote
:
1
lxc_endlineTime
:
10
lxc_delayTime
:
30
springfox
:
documentation
:
swagger
:
v2
:
path
:
/api-docs
jwt
:
header
:
Authorization
secret
:
mySecret
expiration
:
604800
tokenHead
:
"
Bearer
"
login_secert_key
:
"
base64EncodedSecretKey"
route
:
authentication
:
path
:
"
/login"
refresh
:
"
/refresh"
register
:
"
/register"
global
:
default_location
:
course
:
/default/course.jpg
student
:
/default/student.png
teacher
:
/default/teacher.png
carousel
:
/default/carousel.jpg
lk
:
publicalias
:
publiccert
storePwd
:
rcrtcyedu2
subject
:
edu2
licPath
:
/lk/license.lic
pubPath
:
/lk/publicCerts.store
password
:
default
:
123456
min_password
:
6
max_password
:
16
path
:
base_upload_server_location
:
/working/resource/eduServer/
physical_upload_server_location
:
/working/dockervolume/edu2_data_ubuntu/eduServer
course_location
:
course
lesson_location
:
lesson
sl_location
:
sl
freemarker_location
:
/freemarker
image_location
:
/upload
video_location
:
video
temp_location
:
temp
file_location
:
file
ppt_location
:
ppt
pdf_location
:
pdf
cut_pdf_location
:
cutPdf
excel_template_location
:
excel-template/
cource_logo_location
:
/course/logo
images_location
:
/images
lanch_logo_location
:
/lanch/logo
md_file_location
:
mdFiles
che_def_template_location
:
/WEB-INF/classes/che-def-jsonfile/java-mysql.json
che_project_init_location
:
/working/dockervolume/chedir/project
cource_code_location
:
code
cource_project_location
:
project
student_code_location
:
studentCode
xml_location
:
/xmlTemp
other
:
server_url
:
http://106.2.3.134:10180/eduServer
is_server_linux
:
1
max_code_length
:
15
open_office_home
:
D:/oppenOffice/openOffice
cut_pdf_num
:
30
code
:
admin
:
ROLE_1001
teacher
:
ROLE_1002
student
:
ROLE_1003
java
:
'
001'
html
:
'
002'
java_simple
:
'
0001'
java_project
:
'
0002'
html_simple
:
'
1001'
html_project
:
'
1002'
serverLxc
:
ip
:
103.249.252.109
username
:
root
password
:
isoftxunda109
libreoffice
:
ip
:
edu2_libre
port
:
8997
\ No newline at end of file
src/main/resources/application-prod106.yml
deleted
100644 → 0
View file @
a5af91ce
server
:
port
:
8081
context-path
:
/edu
#ContextPath must start with '/' and not end with '/'
tomcat
:
max-threads
:
300
#uri-encoding: UTF-8
#logging:
# level:
# root: INFO
# org.springframework.web: DEBUG
druid
:
url
:
jdbc:mysql://edu2_mysql:3306/edu_db?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false
username
:
root
password
:
123456
initial-size
:
1
min-idle
:
1
max-active
:
20
test-on-borrow
:
true
mybatis
:
mapper-locations
:
classpath:mapper/**/**/*.xml
mapper
:
mappers
:
-
org.rcisoft.core.base.BaseMapper
not-empty
:
false
identity
:
MYSQL
pagehelper
:
helperDialect
:
mysql
reasonable
:
true
supportMethodsArguments
:
true
params
:
count=countSql
spring
:
jackson
:
default-property-inclusion
:
non_null
date-format
:
yyyy-MM-dd
time-zone
:
GMT+8
http
:
# encoding:
# force: true
# charset: UTF-8
# enabled: true
multipart
:
enabled
:
true
max-file-size
:
500Mb
max-request-size
:
1000Mb
mvc
:
throw-exception-if-no-handler-found
:
true
resources
:
add-mappings
:
false
redis
:
host
:
edu2_redis
port
:
6379
pool
:
max-idle
:
50
max-active
:
1000
min-idle
:
5
max-wait
:
-1
database
:
0
password
:
'
'
timeout
:
3600
freemarker
:
charset
:
UTF-8
suffix
:
.ftl
template-loader-path
:
classpath:/templates/
lxc
:
lxc_prefix
:
lessonLxc
lxc_ports
:
lxcPorts
lxc_dockerfilePath
:
/eduLxc
lxc_initPort
:
20001
lxc_maxPort
:
30000
lxc_minu
:
30
lxc_isRemote
:
1
lxc_endlineTime
:
10
lxc_delayTime
:
30
springfox
:
documentation
:
swagger
:
v2
:
path
:
/api-docs
jwt
:
header
:
Authorization
secret
:
mySecret
expiration
:
604800
tokenHead
:
"
Bearer
"
login_secert_key
:
"
base64EncodedSecretKey"
route
:
authentication
:
path
:
"
/login"
refresh
:
"
/refresh"
register
:
"
/register"
global
:
default_location
:
course
:
/default/course.jpg
student
:
/default/student.png
teacher
:
/default/teacher.png
carousel
:
/default/carousel.jpg
lk
:
publicalias
:
publiccert
storePwd
:
rcrtcyedu2
subject
:
edu2
licPath
:
/lk/license.lic
pubPath
:
/lk/publicCerts.store
password
:
default
:
123456
min_password
:
6
max_password
:
16
path
:
base_upload_server_location
:
/working/resource/eduServer/
physical_upload_server_location
:
/working/dockervolume/edu2_data_ubuntu/eduServer
course_location
:
course
lesson_location
:
lesson
sl_location
:
sl
freemarker_location
:
/freemarker
image_location
:
/upload
video_location
:
video
temp_location
:
temp
file_location
:
file
ppt_location
:
ppt
pdf_location
:
pdf
cut_pdf_location
:
cutPdf
excel_template_location
:
excel-template/
cource_logo_location
:
/course/logo
images_location
:
/images
lanch_logo_location
:
/lanch/logo
md_file_location
:
mdFiles
che_def_template_location
:
/WEB-INF/classes/che-def-jsonfile/java-mysql.json
che_project_init_location
:
/working/dockervolume/chedir/project
cource_code_location
:
code
cource_project_location
:
project
student_code_location
:
studentCode
xml_location
:
/xmlTemp
other
:
server_url
:
http://106.2.3.134:10180/eduServer
is_server_linux
:
1
max_code_length
:
15
open_office_home
:
D:/oppenOffice/openOffice
cut_pdf_num
:
30
code
:
admin
:
ROLE_1001
teacher
:
ROLE_1002
student
:
ROLE_1003
java
:
'
001'
html
:
'
002'
java_simple
:
'
0001'
java_project
:
'
0002'
html_simple
:
'
1001'
html_project
:
'
1002'
serverLxc
:
ip
:
106.2.13.29
username
:
root
password
:
isoftxunda29
libreoffice
:
ip
:
edu2_libre
port
:
8997
\ No newline at end of file
src/main/resources/application-prod125.yml
deleted
100644 → 0
View file @
a5af91ce
server
:
port
:
8081
context-path
:
/edu
#ContextPath must start with '/' and not end with '/'
tomcat
:
max-threads
:
300
#uri-encoding: UTF-8
#logging:
# path:/working/resource/eduServer/SpringBootLog
# level:
# root: INFO
# org.springframework.web: info
druid
:
url
:
jdbc:mysql://edu2_mysql:3306/edu_db?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false
username
:
root
password
:
123456
initial-size
:
1
min-idle
:
1
max-active
:
20
test-on-borrow
:
true
mybatis
:
mapper-locations
:
classpath:mapper/**/**/*.xml
mapper
:
mappers
:
-
org.rcisoft.core.base.BaseMapper
not-empty
:
false
identity
:
MYSQL
pagehelper
:
helperDialect
:
mysql
reasonable
:
true
supportMethodsArguments
:
true
params
:
count=countSql
spring
:
jackson
:
default-property-inclusion
:
non_null
http
:
# encoding:
# force: true
# charset: UTF-8
# enabled: true
multipart
:
enabled
:
true
max-file-size
:
500Mb
max-request-size
:
1000Mb
mvc
:
throw-exception-if-no-handler-found
:
true
resources
:
add-mappings
:
false
redis
:
host
:
edu2_redis
port
:
6379
pool
:
max-idle
:
50
max-active
:
1000
min-idle
:
5
max-wait
:
-1
database
:
0
password
:
'
'
timeout
:
3600
freemarker
:
charset
:
UTF-8
suffix
:
.ftl
template-loader-path
:
classpath:/templates/
lxc
:
lxc_prefix
:
lessonLxc
lxc_ports
:
lxcPorts
lxc_dockerfilePath
:
/eduLxc
lxc_initPort
:
20001
lxc_maxPort
:
30000
lxc_minu
:
30
lxc_isRemote
:
1
lxc_endlineTime
:
10
lxc_delayTime
:
30
springfox
:
documentation
:
swagger
:
v2
:
path
:
/api-docs
jwt
:
header
:
Authorization
secret
:
mySecret
expiration
:
604800
tokenHead
:
"
Bearer
"
login_secert_key
:
"
base64EncodedSecretKey"
route
:
authentication
:
path
:
"
/login"
refresh
:
"
/refresh"
register
:
"
/register"
global
:
default_location
:
course
:
/default/course.jpg
student
:
/default/student.png
teacher
:
/default/teacher.png
carousel
:
/default/carousel.jpg
lk
:
publicalias
:
publiccert
storePwd
:
rcrtcyedu2
subject
:
edu2
licPath
:
/lk/license.lic
pubPath
:
/lk/publicCerts.store
password
:
default
:
123456
min_password
:
6
max_password
:
16
path
:
base_upload_server_location
:
/working/resource/eduServer/
physical_upload_server_location
:
/working/dockervolume/edu2_data_ubuntu/eduServer
course_location
:
course
lesson_location
:
lesson
sl_location
:
sl
freemarker_location
:
/freemarker
image_location
:
/upload
video_location
:
video
temp_location
:
temp
file_location
:
file
ppt_location
:
ppt
pdf_location
:
pdf
cut_pdf_location
:
cutPdf
excel_template_location
:
excel-template/
cource_logo_location
:
/course/logo
images_location
:
/images
lanch_logo_location
:
/lanch/logo
md_file_location
:
mdFiles
che_def_template_location
:
/WEB-INF/classes/che-def-jsonfile/java-mysql.json
che_project_init_location
:
/working/dockervolume/chedir/project
cource_code_location
:
code
cource_project_location
:
project
student_code_location
:
studentCode
xml_location
:
/xmlTemp
other
:
server_url
:
http://192.168.1.125:10180/eduServer
is_server_linux
:
1
max_code_length
:
15
open_office_home
:
D:/oppenOffice/openOffice
cut_pdf_num
:
30
code
:
admin
:
ROLE_1001
teacher
:
ROLE_1002
student
:
ROLE_1003
java
:
'
001'
html
:
'
002'
java_simple
:
'
0001'
java_project
:
'
0002'
html_simple
:
'
1001'
html_project
:
'
1002'
serverLxc
:
ip
:
192.168.1.125
username
:
root
password
:
123456
libreoffice
:
ip
:
edu2_libre
port
:
8997
\ No newline at end of file
src/main/resources/application-prod172.yml
deleted
100644 → 0
View file @
a5af91ce
server
:
port
:
8081
context-path
:
/edu
#ContextPath must start with '/' and not end with '/'
tomcat
:
max-threads
:
300
#uri-encoding: UTF-8
#logging:
# level:
# root: INFO
# org.springframework.web: DEBUG
druid
:
url
:
jdbc:mysql://edu2_mysql:3306/edu_db?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false
username
:
root
password
:
123456
initial-size
:
1
min-idle
:
1
max-active
:
20
test-on-borrow
:
true
mybatis
:
mapper-locations
:
classpath:mapper/**/**/*.xml
mapper
:
mappers
:
-
org.rcisoft.core.base.BaseMapper
not-empty
:
false
identity
:
MYSQL
pagehelper
:
helperDialect
:
mysql
reasonable
:
true
supportMethodsArguments
:
true
params
:
count=countSql
spring
:
jackson
:
default-property-inclusion
:
non_null
http
:
# encoding:
# force: true
# charset: UTF-8
# enabled: true
multipart
:
enabled
:
true
max-file-size
:
500Mb
max-request-size
:
1000Mb
mvc
:
throw-exception-if-no-handler-found
:
true
resources
:
add-mappings
:
false
redis
:
host
:
edu2_redis
port
:
7482
pool
:
max-idle
:
50
max-active
:
1000
min-idle
:
5
max-wait
:
-1
database
:
0
password
:
'
'
timeout
:
3600
freemarker
:
charset
:
UTF-8
suffix
:
.ftl
template-loader-path
:
classpath:/templates/
lxc
:
lxc_prefix
:
lessonLxc
lxc_ports
:
lxcPorts
lxc_dockerfilePath
:
/eduLxc
lxc_initPort
:
20001
lxc_maxPort
:
30000
lxc_minu
:
30
lxc_isRemote
:
1
lxc_endlineTime
:
10
lxc_delayTime
:
30
springfox
:
documentation
:
swagger
:
v2
:
path
:
/api-docs
jwt
:
header
:
Authorization
secret
:
mySecret
expiration
:
604800
tokenHead
:
"
Bearer
"
login_secert_key
:
"
base64EncodedSecretKey"
route
:
authentication
:
path
:
"
/login"
refresh
:
"
/refresh"
register
:
"
/register"
global
:
default_location
:
course
:
/default/course.jpg
student
:
/default/student.png
teacher
:
/default/teacher.png
carousel
:
/default/carousel.jpg
password
:
min_password
:
6
max_password
:
16
path
:
base_upload_server_location
:
/working/resource/eduServer/
physical_upload_server_location
:
/working/dockervolume/edu2_data_ubuntu/eduServer
course_location
:
course
lesson_location
:
lesson
sl_location
:
sl
freemarker_location
:
/freemarker
image_location
:
/upload
video_location
:
video
temp_location
:
temp
file_location
:
file
ppt_location
:
ppt
pdf_location
:
pdf
cut_pdf_location
:
cutPdf
excel_template_location
:
excel-template/
cource_logo_location
:
/course/logo
images_location
:
/images
lanch_logo_location
:
/lanch/logo
md_file_location
:
mdFiles
che_def_template_location
:
/WEB-INF/classes/che-def-jsonfile/java-mysql.json
che_project_init_location
:
/working/dockervolume/chedir/project
cource_code_location
:
code
cource_project_location
:
project
student_code_location
:
studentCode
other
:
server_url
:
http://106.2.3.134:10180/eduServer
is_server_linux
:
1
max_code_length
:
15
open_office_home
:
D:/oppenOffice/openOffice
cut_pdf_num
:
30
code
:
admin
:
ROLE_1001
teacher
:
ROLE_1002
student
:
ROLE_1003
java
:
'
001'
html
:
'
002'
java_simple
:
'
0001'
java_project
:
'
0002'
html_simple
:
'
1001'
html_project
:
'
1002'
serverLxc
:
ip
:
172.16.98.108
username
:
root
password
:
shangwuibm
libreoffice
:
ip
:
edu2_libre
port
:
8997
\ No newline at end of file
src/main/resources/logback-spring.xml
View file @
e9e5b7d5
...
...
@@ -72,20 +72,4 @@
</root>
</springProfile>
<springProfile
name=
"prod125"
>
<root
level=
"info"
>
<appender-ref
ref=
"consoleLog"
/>
<appender-ref
ref=
"fileInfoLog"
/>
<appender-ref
ref=
"fileErrorLog"
/>
</root>
</springProfile>
<springProfile
name=
"prod103"
>
<root
level=
"info"
>
<appender-ref
ref=
"consoleLog"
/>
<appender-ref
ref=
"fileInfoLog"
/>
<appender-ref
ref=
"fileErrorLog"
/>
</root>
</springProfile>
</configuration>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment