Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yudao-cloud
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
hblj
yudao-cloud
Commits
60db9b9a
提交
60db9b9a
authored
4月 12, 2020
作者:
YunaiV
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
将 order 模块接入 SCA Dubbo 和 Nacos Discovery 组件,同时将 Seata 修改成 SCA Seata 组件
上级
4a2870e8
隐藏空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
64 行增加
和
169 行删除
+64
-169
pom.xml
common/common-dependencies/pom.xml
+10
-0
application-test.yaml
...rder-application/src/main/resources/application-test.yaml
+0
-6
pom.xml
order/order-service-impl/pom.xml
+12
-19
DatabaseConfiguration.java
.../iocoder/mall/order/biz/config/DatabaseConfiguration.java
+0
-36
OrderReturnServiceImpl.java
...ocoder/mall/order/biz/service/OrderReturnServiceImpl.java
+2
-2
application-test.yaml
...vice-impl/src/main/resources/config/application-test.yaml
+0
-7
application.yaml
...r-service-impl/src/main/resources/config/application.yaml
+25
-16
file.conf
order/order-service-impl/src/main/resources/file.conf
+0
-69
registry.conf
order/order-service-impl/src/main/resources/registry.conf
+0
-14
pom.xml
order/pom.xml
+13
-0
application.yaml
...y-service-impl/src/main/resources/config/application.yaml
+2
-0
没有找到文件。
common/common-dependencies/pom.xml
浏览文件 @
60db9b9a
...
...
@@ -22,6 +22,8 @@
<spring.cloud.alibaba.version>
2.2.0.RELEASE
</spring.cloud.alibaba.version>
<!-- RPC 相关 -->
<dubbo.version>
2.7.1
</dubbo.version>
<!-- Transaction 相关 -->
<seata.version>
1.1.0
</seata.version>
</properties>
<!-- 依赖管理 -->
...
...
@@ -56,6 +58,14 @@
<artifactId>
dubbo
</artifactId>
<version>
${dubbo.version}
</version>
</dependency>
<!-- Transaction 相关 -->
<dependency>
<groupId>
io.seata
</groupId>
<artifactId>
seata-spring-boot-starter
</artifactId>
<version>
${seata.version}
</version>
</dependency>
</dependencies>
</dependencyManagement>
...
...
order/order-application/src/main/resources/application-test.yaml
deleted
100644 → 0
浏览文件 @
4a2870e8
swagger
:
enable
:
true
title
:
订单子系统
description
:
订单子系统
version
:
1.0.0
base-package
:
cn.iocoder.mall.pay.application.controller
order/order-service-impl/pom.xml
浏览文件 @
60db9b9a
...
...
@@ -76,23 +76,26 @@
<artifactId>
mybatis-plus-boot-starter
</artifactId>
</dependency>
<!-- RPC 相关 -->
<dependency>
<groupId>
io.seata
</groupId>
<artifactId>
s
eata-spring
</artifactId>
<groupId>
com.alibaba.cloud
</groupId>
<artifactId>
s
pring-cloud-starter-dubbo
</artifactId>
</dependency>
<!-- Registry 和 Config 相关 -->
<dependency>
<groupId>
io.seata
</groupId>
<artifactId>
s
eata-dubbo
</artifactId>
<groupId>
com.alibaba.cloud
</groupId>
<artifactId>
s
pring-cloud-starter-alibaba-nacos-discovery
</artifactId>
</dependency>
<!--
RPC
相关 -->
<!--
Transaction
相关 -->
<dependency>
<groupId>
org.apache.dubbo
</groupId>
<artifactId>
dubbo
</artifactId>
<groupId>
com.alibaba.cloud
</groupId>
<artifactId>
spring-cloud-alibaba-seata
</artifactId>
</dependency>
<dependency>
<groupId>
org.apache.dubbo
</groupId>
<artifactId>
dubbo
-spring-boot-starter
</artifactId>
<groupId>
io.seata
</groupId>
<artifactId>
seata
-spring-boot-starter
</artifactId>
</dependency>
<!-- MQ 相关 -->
...
...
@@ -107,16 +110,6 @@
<artifactId>
xxl-job-core
</artifactId>
</dependency>
<!-- Registry 和 Config 相关 -->
<dependency>
<groupId>
org.apache.curator
</groupId>
<artifactId>
curator-framework
</artifactId>
</dependency>
<dependency>
<groupId>
org.apache.curator
</groupId>
<artifactId>
curator-recipes
</artifactId>
</dependency>
<!-- 工具类相关 -->
<dependency>
<groupId>
com.google.guava
</groupId>
...
...
order/order-service-impl/src/main/java/cn/iocoder/mall/order/biz/config/DatabaseConfiguration.java
浏览文件 @
60db9b9a
package
cn
.
iocoder
.
mall
.
order
.
biz
.
config
;
import
com.alibaba.druid.pool.DruidDataSource
;
import
com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceBuilder
;
import
io.seata.rm.datasource.DataSourceProxy
;
import
io.seata.spring.annotation.GlobalTransactionScanner
;
import
org.mybatis.spring.annotation.MapperScan
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.DependsOn
;
import
org.springframework.context.annotation.Primary
;
import
org.springframework.transaction.annotation.EnableTransactionManagement
;
import
javax.sql.DataSource
;
@Configuration
@MapperScan
(
"cn.iocoder.mall.order.biz.dao"
)
// 扫描对应的 Mapper 接口
@EnableTransactionManagement
(
proxyTargetClass
=
true
)
// 启动事务管理。为什么使用 proxyTargetClass 参数,参见 https://blog.csdn.net/huang_550/article/details/76492600
public
class
DatabaseConfiguration
{
@Value
(
"${spring.application.name}"
)
private
String
applicationId
;
@Value
(
"${seata.tx-service-group}"
)
private
String
txServiceGroup
;
@Bean
(
"druidDataSource"
)
@ConfigurationProperties
(
"spring.datasource.druid"
)
public
DruidDataSource
druidDataSource
(){
return
DruidDataSourceBuilder
.
create
().
build
();
}
@ConfigurationProperties
(
prefix
=
"spring.datasource"
)
@Primary
@Bean
(
"dataSource"
)
@DependsOn
(
"druidDataSource"
)
// 解决多数据源,循环依赖的问题。主要发生点在 DataSourceInitializerInvoker
public
DataSource
dataSource
()
{
DruidDataSource
druidDataSource
=
druidDataSource
();
return
new
DataSourceProxy
(
druidDataSource
);
}
@Bean
public
GlobalTransactionScanner
globalTransactionScanner
()
{
return
new
GlobalTransactionScanner
(
applicationId
,
txServiceGroup
);
}
}
order/order-service-impl/src/main/java/cn/iocoder/mall/order/biz/service/OrderReturnServiceImpl.java
浏览文件 @
60db9b9a
...
...
@@ -49,9 +49,9 @@ public class OrderReturnServiceImpl implements OrderReturnService {
private
OrderItemMapper
orderItemMapper
;
@Autowired
private
OrderReturnMapper
orderReturnMapper
;
@Reference
(
validation
=
"true"
)
@Autowired
private
OrderLogisticsService
orderLogisticsService
;
@Reference
(
validation
=
"true"
,
version
=
"${dubbo.consumer.PayRefundService.version}"
)
private
PayRefundService
payRefundService
;
@Reference
(
validation
=
"true"
,
version
=
"${dubbo.consumer.DataDictService.version}"
)
...
...
order/order-service-impl/src/main/resources/config/application-test.yaml
deleted
100644 → 0
浏览文件 @
4a2870e8
spring
:
# datasource
datasource
:
url
:
jdbc:mysql://192.168.88.14:3306/mall_order?useSSL=false&useUnicode=true&characterEncoding=UTF-8
driver-class-name
:
com.mysql.jdbc.Driver
username
:
root
password
:
${MALL_MYSQL_PASSWORD}
order/order-service-impl/src/main/resources/config/application.yaml
浏览文件 @
60db9b9a
...
...
@@ -5,15 +5,14 @@ spring:
driver-class-name
:
com.mysql.jdbc.Driver
username
:
root
password
:
${MALL_MYSQL_PASSWORD}
application
:
name
:
order-impl
# 设置值保证程序启动时不报错,具体的值需要修改[nengjie]
# mybatis
#mybatis:
# config-location: classpath:mybatis-config.xml
# mapper-locations: classpath:mapper/*.xml
# type-aliases-package: cn.iocoder.mall.order.biz.dataobject
#
# Spring Cloud 配置项
cloud
:
nacos
:
# Spring Cloud Nacos Discovery 配置项
discovery
:
server-addr
:
127.0.0.1:8848
# Nacos 服务器地址
# mybatis-plus
mybatis-plus
:
configuration
:
...
...
@@ -24,18 +23,22 @@ mybatis-plus:
mapper-locations
:
classpath*:mapper/*.xml
type-aliases-package
:
cn.iocoder.mall.order.biz.dataobject
#
dubbo
#
Dubbo 配置项
dubbo
:
application
:
name
:
order-service
# Dubbo 注册中心
registry
:
address
:
zookeeper://127.0.0.1:2181
address
:
spring-cloud://127.0.0.1:8848
# 指定 Dubbo 服务注册中心的地址
# Spring Cloud Alibaba Dubbo 专属配置
cloud
:
subscribed-services
:
admin-application, user-application, product-application, promotion-application, pay-application
# 设置订阅的应用列表,默认为 * 订阅所有应用
# Dubbo 提供者的协议
protocol
:
port
:
-1
name
:
dubbo
port
:
-1
# Dubbo 提供服务的扫描基础包
scan
:
base-packages
:
cn.iocoder.mall.order.biz.service
# Dubbo 服务提供者的配置
provider
:
filter
:
-exception
CartService
:
...
...
@@ -73,6 +76,12 @@ logging:
# dao 开启 debug 模式 mybatis 输入 sql
cn.iocoder.mall.order.biz.dao
:
debug
#
seata
#
Seata 配置项
seata
:
tx-service-group
:
my_test_tx_group
# Seata 注册中心配置项
registry
:
type
:
nacos
# 注册中心类型
nacos
:
serverAddr
:
${spring.cloud.nacos.discovery.server-addr}
# Nacos 服务地址
namespace
:
# Nacos 命名空间
cluster
:
default
# 使用的 Seata 分组
order/order-service-impl/src/main/resources/file.conf
deleted
100644 → 0
浏览文件 @
4a2870e8
transport
{
# tcp udt unix-domain-socket
type
=
"TCP"
#NIO NATIVE
server
=
"NIO"
#enable heartbeat
heartbeat
=
true
#thread factory for netty
thread
-
factory
{
boss
-
thread
-
prefix
=
"NettyBoss"
worker
-
thread
-
prefix
=
"NettyServerNIOWorker"
server
-
executor
-
thread
-
prefix
=
"NettyServerBizHandler"
share
-
boss
-
worker
=
false
client
-
selector
-
thread
-
prefix
=
"NettyClientSelector"
client
-
selector
-
thread
-
size
=
1
client
-
worker
-
thread
-
prefix
=
"NettyClientWorkerThread"
# netty boss thread size,will not be used for UDT
boss
-
thread
-
size
=
1
#auto default pin or 8
worker
-
thread
-
size
=
8
}
}
service
{
#vgroup->rgroup
vgroup_mapping
.
my_test_tx_group
=
"default"
#only support single node
default
.
grouplist
=
"180.167.213.26:8091"
#degrade current not support
enableDegrade
=
false
#disable
disable
=
false
}
client
{
async
.
commit
.
buffer
.
limit
=
10000
lock
{
retry
.
internal
=
10
retry
.
times
=
30
}
}
## transaction log store
store
{
## store mode: file、db
mode
=
"file"
## file store
file
{
dir
=
"file_store/data"
# branch session size , if exceeded first try compress lockkey, still exceeded throws exceptions
max
-
branch
-
session
-
size
=
16384
# globe session size , if exceeded throws exceptions
max
-
global
-
session
-
size
=
512
# file buffer size , if exceeded allocate new buffer
file
-
write
-
buffer
-
cache
-
size
=
16384
# when recover batch read size
session
.
reload
.
read_size
=
100
}
## database store
db
{
driver_class
=
""
url
=
""
user
=
""
password
=
""
}
}
order/order-service-impl/src/main/resources/registry.conf
deleted
100644 → 0
浏览文件 @
4a2870e8
registry
{
type
=
"file"
file
{
name
=
"file.conf"
}
zk
{
cluster
=
"default"
serverAddr
=
"192.168.88.10:2181"
session
.
timeout
=
6000
connect
.
timeout
=
2000
}
}
order/pom.xml
浏览文件 @
60db9b9a
...
...
@@ -16,4 +16,17 @@
<module>
order-service-api
</module>
<module>
order-service-impl
</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
cn.iocoder.mall
</groupId>
<artifactId>
common-dependencies
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
pay/pay-service-impl/src/main/resources/config/application.yaml
浏览文件 @
60db9b9a
...
...
@@ -31,8 +31,10 @@ dubbo:
protocol
:
name
:
dubbo
port
:
-1
# Dubbo 提供服务的扫描基础包
scan
:
base-packages
:
cn.iocoder.mall.pay.biz.service
# Dubbo 服务提供者的配置
provider
:
filter
:
-exception
PayTransactionService
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论