1 Star 0 Fork 7

luotianhao/choerodon-monitor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
init-database.sh 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
18986 提交于 2021-03-25 16:24 . [IMP] 修改数据初始化配置
#!/usr/bin/env bash
MAVEN_LOCAL_REPO=$(cd / && mvn help:evaluate -Dexpression=settings.localRepository -q -DforceStdout)
TOOL_GROUP_ID=io.choerodon
TOOL_ARTIFACT_ID=choerodon-tool-liquibase
TOOL_VERSION=0.19.1.RELEASE
TOOL_JAR_PATH=${MAVEN_LOCAL_REPO}/${TOOL_GROUP_ID/\./\/}/${TOOL_ARTIFACT_ID}/${TOOL_VERSION}/${TOOL_ARTIFACT_ID}-${TOOL_VERSION}.jar
mvn org.apache.maven.plugins:maven-dependency-plugin:get \
-Dartifact=${TOOL_GROUP_ID}:${TOOL_ARTIFACT_ID}:${TOOL_VERSION} \
-Dtransitive=false
java -Dspring.datasource.url="jdbc:mysql://localhost:3306?serverTimezone=CTT&useUnicode=true&characterEncoding=utf-8&useSSL=false&useInformationSchema=true&remarks=true" \
-Dspring.datasource.username=root \
-Dspring.datasource.password=root \
-Ddata.init=true \
-Dinstaller.jarPath=target/app.jar \
-jar ${TOOL_JAR_PATH}
# 多数据源配置添加如下配置,将test改为数据源名称
# -Dspring.datasource.dynamic.datasource.test.driver-class-name="com.mysql.jdbc.Driver" \
# -Dspring.datasource.dynamic.datasource.test.url="jdbc:mysql://localhost:3306?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT" \
# -Dspring.datasource.dynamic.datasource.test.username="root"
# -Dspring.datasource.dynamic.datasource.test.password="root"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/luotianhao25182/choerodon-monitor.git
git@gitee.com:luotianhao25182/choerodon-monitor.git
luotianhao25182
choerodon-monitor
choerodon-monitor
master

搜索帮助