################################ JDBC Setting ###################################
|
# Oracle : oracle.jdbc.OracleDriver | jdbc:oracle:thin:@${host}:${port}:${db} #
|
# MySql : com.mysql.jdbc.Driver | jdbc:mysql://${host}:${port}/${db} #
|
#################################################################################
|
|
# 动态切换数据库配置模版
|
db.instance=care_test
|
db.url=jdbc:mysql://192.168.190.200:3306/{0}?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true
|
db.username=root
|
db.password=12345
|
|
# Druid
|
druid.url=jdbc:mysql://192.168.190.200:3306/care_test?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true
|
druid.username=root
|
druid.password=12345
|
|
#Shiro Properties
|
###################################################################################################
|
# Modifying ANY of these will break your current authentication.
|
# Best to set them once and not modify them again.
|
# Or you will need to program a migration to change all of your passphrases to the new values
|
###################################################################################################
|
shiro.hashIterations=1024
|
shiro.hashAlgorithmName=SHA-512
|
shiro.storedCredentialsHexEncoded=false
|
shiro.applicationSalt=Supe5Str0ngPassw0rdSalt
|
|
# 默认过滤管理员菜单代码
|
menu.exclude.admin=systemSetting,systemUser,peopleMgr,assetGroup,organization,authrization,dictionary
|
# 上传文件保存位置
|
# file: 以项目路径为基准
|
# http: http协议
|
# ftp: ftp协议
|
fileupload.path=file:{0}upload
|
|
# activiti rest服务地址
|
activiti_base_rest_uri=http://localhost:8080/flow/rest/
|