Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
437f6915
提交
437f6915
编写于
10月 30, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MoneyQ 发布系统代码 [后台服务,演示应用]
上级
3d60668c
变更
11
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
145 行增加
和
80 行删除
+145
-80
pom.xml
demo-app/demo-app-web/pom.xml
+20
-0
application-web-prod.yml
.../demo-app-web/src/main/resources/application-web-prod.yml
+1
-1
mysql.yml
demo-boot/src/main/docker/mysql.yml
+19
-0
IBIZOrderImport.java
.../java/cn/ibizlab/core/sample/mapping/IBIZOrderImport.java
+1
-1
init_h2.sql
demo-core/src/main/resources/liquibase/config/init_h2.sql
+6
-0
h2_table.xml
demo-core/src/main/resources/liquibase/h2_table.xml
+37
-37
view.xml
demo-core/src/main/resources/liquibase/view.xml
+34
-34
pom.xml
demo-provider/demo-provider-demoapi/pom.xml
+20
-0
application-demoapi-prod.yml
...r-demoapi/src/main/resources/application-demoapi-prod.yml
+1
-1
application-nacos.yml
demo-util/src/main/resources/application-nacos.yml
+1
-1
application-sys.yml
demo-util/src/main/resources/application-sys.yml
+5
-5
未找到文件。
demo-app/demo-app-web/pom.xml
浏览文件 @
437f6915
...
...
@@ -21,6 +21,9 @@
</dependency>
</dependencies>
<properties>
<docker.image.prefix>
registry.cn-shanghai.aliyuncs.com/ibizsys
</docker.image.prefix>
</properties>
<profiles>
...
...
@@ -95,6 +98,23 @@
</executions>
</plugin>
<plugin>
<groupId>
com.spotify
</groupId>
<artifactId>
docker-maven-plugin
</artifactId>
<version>
0.4.13
</version>
<configuration>
<serverId>
ibiz-dev
</serverId>
<imageName>
${docker.image.prefix}/${project.artifactId}:latest
</imageName>
<dockerDirectory>
${project.basedir}/src/main/docker
</dockerDirectory>
<resources>
<resource>
<targetPath>
/
</targetPath>
<directory>
../../
</directory>
<include>
${project.artifactId}.jar
</include>
</resource>
</resources>
</configuration>
</plugin>
</plugins>
</build>
</profile>
...
...
demo-app/demo-app-web/src/main/resources/application-web-prod.yml
浏览文件 @
437f6915
server
:
port
:
8080
port
:
51001
#Log配置
logging
:
level
:
...
...
demo-boot/src/main/docker/mysql.yml
0 → 100644
浏览文件 @
437f6915
version
:
"
3.2"
services
:
DemoSys-mysql
:
image
:
mysql:5.7.20
volumes
:
-
$PWD/../../../../volumes/mysql/:/var/lib/mysql/
networks
:
-
agent_network
environment
:
-
TZ=Asia/Shanghai
-
MYSQL_ALLOW_EMPTY_PASSWORD=yes
-
MYSQL_ROOT_PASSWORD=root
-
MYSQL_DATABASE=a_LAB01_df847bdfd
ports
:
-
3306:3306
command
:
mysqld --lower_case_table_names=1 --skip-ssl --character_set_server=utf8 --explicit_defaults_for_timestamp
networks
:
agent_network
:
attachable
:
true
demo-core/src/main/java/cn/ibizlab/core/sample/mapping/IBIZOrderImport.java
浏览文件 @
437f6915
...
...
@@ -8,10 +8,10 @@ import java.util.List;
public
interface
IBIZOrderImport
{
@Mappings
({
@Mapping
(
target
=
"ibizorderid"
,
source
=
"ibizorderid"
),
@Mapping
(
target
=
"ibizordername"
,
source
=
"ibizordername"
),
@Mapping
(
target
=
"ordertype"
,
source
=
"ordertype"
),
@Mapping
(
target
=
"ordertime"
,
source
=
"ordertime"
),
@Mapping
(
target
=
"orderuid"
,
source
=
"orderuid"
),
@Mapping
(
target
=
"ibizordername"
,
source
=
"ibizordername"
),
})
@BeanMapping
(
ignoreByDefault
=
true
)
IBIZOrder
toDomain
(
IBIZOrder
entity
);
...
...
demo-core/src/main/resources/liquibase/config/init_h2.sql
0 → 100644
浏览文件 @
437f6915
create
schema
if
not
exists
a_LAB01_df847bdfd
;
set
schema
a_LAB01_df847bdfd
;
demo-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
437f6915
此差异已折叠。
点击以展开。
demo-core/src/main/resources/liquibase/view.xml
浏览文件 @
437f6915
此差异已折叠。
点击以展开。
demo-provider/demo-provider-demoapi/pom.xml
浏览文件 @
437f6915
...
...
@@ -21,6 +21,9 @@
</dependency>
</dependencies>
<properties>
<docker.image.prefix>
registry.cn-shanghai.aliyuncs.com/ibizsys
</docker.image.prefix>
</properties>
<profiles>
<profile>
...
...
@@ -54,6 +57,23 @@
</executions>
</plugin>
<plugin>
<groupId>
com.spotify
</groupId>
<artifactId>
docker-maven-plugin
</artifactId>
<version>
0.4.13
</version>
<configuration>
<serverId>
ibiz-dev
</serverId>
<imageName>
${docker.image.prefix}/${project.artifactId}:latest
</imageName>
<dockerDirectory>
${project.basedir}/src/main/docker
</dockerDirectory>
<resources>
<resource>
<targetPath>
/
</targetPath>
<directory>
../../
</directory>
<include>
${project.artifactId}.jar
</include>
</resource>
</resources>
</configuration>
</plugin>
</plugins>
</build>
</profile>
...
...
demo-provider/demo-provider-demoapi/src/main/resources/application-demoapi-prod.yml
浏览文件 @
437f6915
server
:
port
:
8081
port
:
51000
#Log配置
logging
:
level
:
...
...
demo-util/src/main/resources/application-nacos.yml
浏览文件 @
437f6915
...
...
@@ -3,7 +3,7 @@ spring:
cloud
:
nacos
:
discovery
:
server-addr
:
1
27.0.0.1
:8848
server-addr
:
1
72.16.240.110
:8848
enabled
:
true
eureka
:
...
...
demo-util/src/main/resources/application-sys.yml
浏览文件 @
437f6915
...
...
@@ -6,7 +6,7 @@ spring:
caffeine
:
spec
:
initialCapacity=5,maximumSize=500,expireAfterWrite=3600s
redis
:
host
:
1
27.0.0.1
host
:
1
72.16.240.110
port
:
6379
password
:
database
:
0
...
...
@@ -21,9 +21,9 @@ spring:
max-file-size
:
100MB
max-request-size
:
100MB
datasource
:
username
:
root
password
:
'
root
'
url
:
jdbc:mysql://1
27.0.0.1:3306/DemoSys
?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true&allowMultiQueries=true
username
:
a_LAB01_df847bdfd
password
:
'
3d6@460A
'
url
:
jdbc:mysql://1
72.16.186.185:3306/a_LAB01_df847bdfd
?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true&allowMultiQueries=true
driver-class-name
:
com.mysql.jdbc.Driver
filters
:
stat,wall,log4j2
#配置初始化大小/最小/最大
...
...
@@ -44,7 +44,7 @@ spring:
pool-prepared-statements
:
false
max-pool-prepared-statement-per-connection-size
:
20
isSyncDBSchema
:
false
defaultSchema
:
DemoSys
defaultSchema
:
a_LAB01_df847bdfd
conf
:
classpath:liquibase/master.xml
#Mybatis-plus配置
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录