Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzdst
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
1
议题
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzdst
提交
79342fe1
提交
79342fe1
编写于
10月 23, 2021
作者:
ibiz4j
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
主库支持达梦
上级
f90dfa86
变更
6
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
61 行增加
和
6 行删除
+61
-6
package-lock.json
app_web/package-lock.json
+5
-0
package.json
app_web/package.json
+6
-5
pom.xml
ibzdst-boot/pom.xml
+33
-0
application-boot.yml
ibzdst-boot/src/main/resources/application-boot.yml
+3
-1
application-dm.yml
ibzdst-boot/src/main/resources/application-dm.yml
+8
-0
banner.txt
ibzdst-boot/src/main/resources/banner.txt
+6
-0
未找到文件。
app_web/package-lock.json
浏览文件 @
79342fe1
...
...
@@ -116,6 +116,11 @@
"ssf"
:
"~0.10.3"
,
"wmf"
:
"~1.0.1"
}
},
"yarn"
:
{
"version"
:
"1.22.11"
,
"resolved"
:
"https://registry.npmjs.org/yarn/-/yarn-1.22.11.tgz"
,
"integrity"
:
"sha512-AWje4bzqO9RUn3sdnM5N8n4ZJ0BqCc/kqFJvpOI5/EVkINXui0yuvU7NDCEF//+WaxHuNay2uOHxA4+tq1P3cg=="
}
}
}
app_web/package.json
浏览文件 @
79342fe1
...
...
@@ -12,10 +12,6 @@
"lint"
:
"vue-cli-service lint"
},
"dependencies"
:
{
"@riophae/vue-treeselect"
:
"0.0.38"
,
"ag-grid-community"
:
"^20.2.0"
,
"ag-grid-enterprise"
:
"^20.2.0"
,
"ag-grid-vue"
:
"^20.2.0"
,
"@fullcalendar/core"
:
"^4.4.0"
,
"@fullcalendar/daygrid"
:
"^4.4.0"
,
"@fullcalendar/interaction"
:
"^4.4.0"
,
...
...
@@ -24,6 +20,10 @@
"@fullcalendar/vue"
:
"^4.4.0"
,
"@json-editor/json-editor"
:
"1.4.0-beta.0"
,
"@popperjs/core"
:
"^2.4.3"
,
"@riophae/vue-treeselect"
:
"0.0.38"
,
"ag-grid-community"
:
"^20.2.0"
,
"ag-grid-enterprise"
:
"^20.2.0"
,
"ag-grid-vue"
:
"^20.2.0"
,
"async-validator"
:
"^3.3.0"
,
"axios"
:
"^0.19.1"
,
"bootstrap-vue"
:
"^2.18.1"
,
...
...
@@ -55,7 +55,8 @@
"vue-router"
:
"^3.1.3"
,
"vuedraggable"
:
"^2.23.2"
,
"vuex"
:
"^3.1.2"
,
"xlsx"
:
"^0.15.6"
"xlsx"
:
"^0.15.6"
,
"yarn"
:
"^1.22.11"
},
"devDependencies"
:
{
"@types/echarts"
:
"^4.4.3"
,
...
...
ibzdst-boot/pom.xml
浏览文件 @
79342fe1
...
...
@@ -18,17 +18,50 @@
<groupId>
cn.ibizlab
</groupId>
<artifactId>
ibzdst-core
</artifactId>
<version>
${project.version}
</version>
<exclusions>
<exclusion>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-tomcat
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
cn.ibizlab
</groupId>
<artifactId>
ibzdst-provider-api
</artifactId>
<version>
${project.version}
</version>
<exclusions>
<exclusion>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-tomcat
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
cn.ibizlab
</groupId>
<artifactId>
ibzdst-app-web
</artifactId>
<version>
${project.version}
</version>
<exclusions>
<exclusion>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-tomcat
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
<exclusions>
<exclusion>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-tomcat
</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- jetty 容器. -->
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-jetty
</artifactId>
</dependency>
</dependencies>
<!--由于boot是通过dependency来关联所有子项目,页面和配置等信息都存在与子项目中,
...
...
ibzdst-boot/src/main/resources/application-boot.yml
浏览文件 @
79342fe1
...
...
@@ -38,4 +38,6 @@ rocketmq:
logging
:
config
:
classpath:logback-spring.xml
level
:
cn.ibizlab.core.extensions.mapper.DbEntityMapper
:
info
\ No newline at end of file
cn.ibizlab.core.extensions.mapper.DbEntityMapper
:
info
org.springframework.boot.web.embedded.jetty
:
ERROR
org.eclipse.jetty
:
ERROR
\ No newline at end of file
ibzdst-boot/src/main/resources/application-dm.yml
0 → 100644
浏览文件 @
79342fe1
spring
:
datasource
:
driver-class-name
:
dm.jdbc.driver.DmDriver
url
:
jdbc:dm://172.16.102.5:5238?&clobAsString=true&comOra=true
isSyncDBSchema
:
true
defaultSchema
:
RTBASE
username
:
RTBASE
password
:
'
sajuwei1234'
ibzdst-boot/src/main/resources/banner.txt
0 → 100644
浏览文件 @
79342fe1
.__ ___. .__ .____ ___.
|__|\_ |__ |__|________| | _____ \_ |__
| | | __ \ | |\___ /| | \__ \ | __ \
| | | \_\ \| | / / | |___ / __ \_| \_\ \
|__| |___ /|__|/_____ \|_______ \(____ /|___ /
\/ \/ \/ \/ \/
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录