Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
981faab1
Commit
981faab1
authored
Mar 15, 2024
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
明细接口改造
parent
834b8d48
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
195 additions
and
159 deletions
+195
-159
pom.xml
yifu-ekp/yifu-ekp-biz/pom.xml
+10
-10
OTAStrategyShardingAlgorithm.java
...loud/plus/v1/ekp/config/OTAStrategyShardingAlgorithm.java
+101
-101
EkpSalaryInfoService.java
.../yifu/cloud/plus/v1/ekp/service/EkpSalaryInfoService.java
+1
-3
EkpSocialInfoService.java
.../yifu/cloud/plus/v1/ekp/service/EkpSocialInfoService.java
+1
-3
application-test.yml
...-ekp/yifu-ekp-biz/src/main/resources/application-test.yml
+82
-42
No files found.
yifu-ekp/yifu-ekp-biz/pom.xml
View file @
981faab1
...
@@ -80,16 +80,16 @@
...
@@ -80,16 +80,16 @@
<version>
1.0.0
</version>
<version>
1.0.0
</version>
<scope>
compile
</scope>
<scope>
compile
</scope>
</dependency>
</dependency>
<dependency
>
<!-- <dependency>--
>
<groupId>
org.apache.shardingsphere
</groupId
>
<!-- <groupId>org.apache.shardingsphere</groupId>--
>
<artifactId>
shardingsphere-jdbc-core-spring-boot-starter
</artifactId
>
<!-- <artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId>--
>
<version>
5.1.2
</version
>
<!-- <version>5.1.2</version>--
>
</dependency
>
<!-- </dependency>--
>
<dependency
>
<!-- <dependency>--
>
<groupId>
org.apache.shardingsphere
</groupId
>
<!-- <groupId>org.apache.shardingsphere</groupId>--
>
<artifactId>
sharding-transaction-base-seata-at
</artifactId
>
<!-- <artifactId>sharding-transaction-base-seata-at</artifactId>--
>
<version>
4.1.1
</version
>
<!-- <version>4.1.1</version>--
>
</dependency
>
<!-- </dependency>--
>
<dependency>
<dependency>
<groupId>
com.yifu.cloud.plus.v1
</groupId>
<groupId>
com.yifu.cloud.plus.v1
</groupId>
<artifactId>
yifu-common-core
</artifactId>
<artifactId>
yifu-common-core
</artifactId>
...
...
yifu-ekp/yifu-ekp-biz/src/main/java/com/yifu/cloud/plus/v1/ekp/config/OTAStrategyShardingAlgorithm.java
View file @
981faab1
package
com
.
yifu
.
cloud
.
plus
.
v1
.
ekp
.
config
;
//
package com.yifu.cloud.plus.v1.ekp.config;
//
import
com.google.common.collect.Range
;
//
import com.google.common.collect.Range;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.DateUtil
;
//
import com.yifu.cloud.plus.v1.yifu.common.core.util.DateUtil;
import
org.apache.shardingsphere.sharding.api.sharding.standard.PreciseShardingValue
;
//
import org.apache.shardingsphere.sharding.api.sharding.standard.PreciseShardingValue;
import
org.apache.shardingsphere.sharding.api.sharding.standard.RangeShardingValue
;
//
import org.apache.shardingsphere.sharding.api.sharding.standard.RangeShardingValue;
import
org.apache.shardingsphere.sharding.api.sharding.standard.StandardShardingAlgorithm
;
//
import org.apache.shardingsphere.sharding.api.sharding.standard.StandardShardingAlgorithm;
import
org.springframework.stereotype.Component
;
//
import org.springframework.stereotype.Component;
//
import
java.time.format.DateTimeFormatter
;
//
import java.time.format.DateTimeFormatter;
import
java.util.*
;
//
import java.util.*;
//
@Component
//
@Component
public
class
OTAStrategyShardingAlgorithm
implements
StandardShardingAlgorithm
<
String
>
{
//
public class OTAStrategyShardingAlgorithm implements StandardShardingAlgorithm<String> {
//
private
static
final
DateTimeFormatter
yyyy
=
DateTimeFormatter
.
ofPattern
(
"yyyy"
);
//
private static final DateTimeFormatter yyyy = DateTimeFormatter.ofPattern("yyyy");
//
/**
//
/**
* 数据插入
//
* 数据插入
* @param collection
//
* @param collection
* @param preciseShardingValue
//
* @param preciseShardingValue
* @Author hyc
//
* @Author hyc
* @Date 2022-07-21
//
* @Date 2022-07-21
* @return
//
* @return
*/
//
*/
@Override
//
@Override
public
String
doSharding
(
Collection
<
String
>
collection
,
PreciseShardingValue
<
String
>
preciseShardingValue
)
{
//
public String doSharding(Collection<String> collection, PreciseShardingValue<String> preciseShardingValue) {
//
String
value
=
preciseShardingValue
.
getValue
();
//
String value = preciseShardingValue.getValue();
String
tableSuffix
=
value
.
substring
(
0
,
4
);
//
String tableSuffix = value.substring(0,4);
String
logicTableName
=
preciseShardingValue
.
getLogicTableName
();
//
String logicTableName = preciseShardingValue.getLogicTableName();
String
table
=
logicTableName
.
concat
(
"_"
).
concat
(
tableSuffix
);
//
String table = logicTableName.concat("_").concat(tableSuffix);
return
collection
.
stream
().
filter
(
s
->
s
.
equals
(
table
)).
findFirst
().
orElseThrow
(()
->
new
RuntimeException
(
"逻辑分表不存在"
));
//
return collection.stream().filter(s -> s.equals(table)).findFirst().orElseThrow(() -> new RuntimeException("逻辑分表不存在"));
}
//
}
//
/**
//
/**
* 【范围】数据查询
//
* 【范围】数据查询
* @param collection
//
* @param collection
* @param rangeShardingValue
//
* @param rangeShardingValue
* @Author hyc
//
* @Author hyc
* @Date 2022-07-21
//
* @Date 2022-07-21
* @return
//
* @return
*/
//
*/
@Override
//
@Override
public
Collection
<
String
>
doSharding
(
Collection
<
String
>
collection
,
RangeShardingValue
<
String
>
rangeShardingValue
)
{
//
public Collection<String> doSharding(Collection<String> collection, RangeShardingValue<String> rangeShardingValue) {
// 逻辑表名
//
// 逻辑表名
String
logicTableName
=
rangeShardingValue
.
getLogicTableName
();
//
String logicTableName = rangeShardingValue.getLogicTableName();
//
// 范围参数
//
// 范围参数
Range
<
String
>
valueRange
=
rangeShardingValue
.
getValueRange
();
//
Range<String> valueRange = rangeShardingValue.getValueRange();
Set
<
String
>
queryRangeTables
=
extracted
(
logicTableName
,
valueRange
.
lowerEndpoint
(),
valueRange
.
upperEndpoint
());
//
Set<String> queryRangeTables = extracted(logicTableName, valueRange.lowerEndpoint(), valueRange.upperEndpoint());
ArrayList
<
String
>
tables
=
new
ArrayList
<>(
collection
);
//
ArrayList<String> tables = new ArrayList<>(collection);
tables
.
retainAll
(
queryRangeTables
);
//
tables.retainAll(queryRangeTables);
return
tables
;
//
return tables;
}
//
}
//
/**
//
/**
* 根据范围计算表名
//
* 根据范围计算表名
* @param logicTableName 逻辑表明
//
* @param logicTableName 逻辑表明
* @param lowerEndpoint 范围起点
//
* @param lowerEndpoint 范围起点
* @param upperEndpoint 范围终端
//
* @param upperEndpoint 范围终端
* @Author hyc
//
* @Author hyc
* @Date 2022-07-21
//
* @Date 2022-07-21
* @return 物理表名集合
//
* @return 物理表名集合
*/
//
*/
private
Set
<
String
>
extracted
(
String
logicTableName
,
String
lowerEndpoint
,
String
upperEndpoint
)
{
//
private Set<String> extracted(String logicTableName, String lowerEndpoint, String upperEndpoint) {
Set
<
String
>
rangeTable
=
new
HashSet
<>();
//
Set<String> rangeTable = new HashSet<>();
while
(
DateUtil
.
stringToDate
(
lowerEndpoint
+
"01"
).
before
(
DateUtil
.
stringToDate
(
upperEndpoint
+
"01"
)))
{
//
while (DateUtil.stringToDate(lowerEndpoint + "01").before(DateUtil.stringToDate(upperEndpoint + "01"))) {
String
str
=
getTableNameByDate
(
lowerEndpoint
,
logicTableName
);
//
String str = getTableNameByDate(lowerEndpoint, logicTableName);
rangeTable
.
add
(
str
);
//
rangeTable.add(str);
lowerEndpoint
=
DateUtil
.
dateToString
(
DateUtil
.
dateIncreaseByYear
(
DateUtil
.
stringToDate
(
lowerEndpoint
+
"01"
),
1
),
DateUtil
.
DATETIME_YYYYMM
);
//
lowerEndpoint = DateUtil.dateToString(DateUtil.dateIncreaseByYear(DateUtil.stringToDate(lowerEndpoint + "01"),1),DateUtil.DATETIME_YYYYMM);
}
//
}
// 获取物理表明
//
// 获取物理表明
String
tableName
=
getTableNameByDate
(
upperEndpoint
,
logicTableName
);
//
String tableName = getTableNameByDate(upperEndpoint, logicTableName);
rangeTable
.
add
(
tableName
);
//
rangeTable.add(tableName);
return
rangeTable
;
//
return rangeTable;
}
//
}
//
/**
//
/**
* 根据日期获取表明
//
* 根据日期获取表明
* @param dateTime 日期
//
* @param dateTime 日期
* @param logicTableName 逻辑表名
//
* @param logicTableName 逻辑表名
* @Author hyc
//
* @Author hyc
* @Date 2022-07-21
//
* @Date 2022-07-21
* @return 物理表名
//
* @return 物理表名
*/
//
*/
private
String
getTableNameByDate
(
String
dateTime
,
String
logicTableName
)
{
//
private String getTableNameByDate(String dateTime, String logicTableName) {
String
tableSuffix
=
dateTime
.
substring
(
0
,
4
);
//
String tableSuffix = dateTime.substring(0,4);
return
logicTableName
.
concat
(
"_"
).
concat
(
tableSuffix
);
//
return logicTableName.concat("_").concat(tableSuffix);
}
//
}
//
@Override
//
@Override
public
Properties
getProps
()
{
//
public Properties getProps() {
return
null
;
//
return null;
}
//
}
//
@Override
//
@Override
public
void
init
(
Properties
properties
)
{
//
public void init(Properties properties) {
//
}
//
}
}
//
}
yifu-ekp/yifu-ekp-biz/src/main/java/com/yifu/cloud/plus/v1/ekp/service/EkpSalaryInfoService.java
View file @
981faab1
...
@@ -3,8 +3,6 @@ package com.yifu.cloud.plus.v1.ekp.service;
...
@@ -3,8 +3,6 @@ package com.yifu.cloud.plus.v1.ekp.service;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yifu.cloud.plus.v1.ekp.entity.EkpSalaryInfo
;
import
com.yifu.cloud.plus.v1.ekp.entity.EkpSalaryInfo
;
import
com.yifu.cloud.plus.v1.yifu.ekp.vo.EkpSalaryParam
;
import
com.yifu.cloud.plus.v1.yifu.ekp.vo.EkpSalaryParam
;
import
org.apache.shardingsphere.transaction.annotation.ShardingTransactionType
;
import
org.apache.shardingsphere.transaction.core.TransactionType
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.transaction.annotation.Transactional
;
import
java.util.List
;
import
java.util.List
;
...
@@ -18,6 +16,6 @@ import java.util.List;
...
@@ -18,6 +16,6 @@ import java.util.List;
public
interface
EkpSalaryInfoService
extends
IService
<
EkpSalaryInfo
>
{
public
interface
EkpSalaryInfoService
extends
IService
<
EkpSalaryInfo
>
{
@Transactional
@Transactional
@ShardingTransactionType
(
TransactionType
.
BASE
)
//
@ShardingTransactionType(TransactionType.BASE)
Boolean
pushSalaryInfoToEkp
(
List
<
EkpSalaryParam
>
unPushList
);
Boolean
pushSalaryInfoToEkp
(
List
<
EkpSalaryParam
>
unPushList
);
}
}
yifu-ekp/yifu-ekp-biz/src/main/java/com/yifu/cloud/plus/v1/ekp/service/EkpSocialInfoService.java
View file @
981faab1
...
@@ -6,8 +6,6 @@ import com.yifu.cloud.plus.v1.ekp.vo.EkpSocialPushInfoVo;
...
@@ -6,8 +6,6 @@ import com.yifu.cloud.plus.v1.ekp.vo.EkpSocialPushInfoVo;
import
com.yifu.cloud.plus.v1.ekp.vo.EkpSocialStatusUpdateVo
;
import
com.yifu.cloud.plus.v1.ekp.vo.EkpSocialStatusUpdateVo
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.ekp.vo.EkpPushSocialParam
;
import
com.yifu.cloud.plus.v1.yifu.ekp.vo.EkpPushSocialParam
;
import
org.apache.shardingsphere.transaction.annotation.ShardingTransactionType
;
import
org.apache.shardingsphere.transaction.core.TransactionType
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.transaction.annotation.Transactional
;
import
java.util.List
;
import
java.util.List
;
...
@@ -21,7 +19,7 @@ import java.util.List;
...
@@ -21,7 +19,7 @@ import java.util.List;
public
interface
EkpSocialInfoService
extends
IService
<
EkpSocialInfo
>
{
public
interface
EkpSocialInfoService
extends
IService
<
EkpSocialInfo
>
{
@Transactional
@Transactional
@ShardingTransactionType
(
TransactionType
.
BASE
)
//
@ShardingTransactionType(TransactionType.BASE)
EkpSocialPushInfoVo
pushSocialInfoToEkp
(
List
<
EkpPushSocialParam
>
unPushList
);
EkpSocialPushInfoVo
pushSocialInfoToEkp
(
List
<
EkpPushSocialParam
>
unPushList
);
R
updateScoialStatus
(
List
<
EkpSocialStatusUpdateVo
>
list
);
R
updateScoialStatus
(
List
<
EkpSocialStatusUpdateVo
>
list
);
...
...
yifu-ekp/yifu-ekp-biz/src/main/resources/application-test.yml
View file @
981faab1
## 数据源配置
#spring:
# shardingsphere:
# datasource:
# ds0:
# type: com.zaxxer.hikari.HikariDataSource
# driver-class-name: com.mysql.cj.jdbc.Driver
# url: jdbc:mysql://192.168.1.122:33306/ekp?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowMultiQueries=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai&rewriteBatchedStatements=true&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true
# username: root
# password: ll_mysql
# hikari:
# driver-class-name: ${spring.datasource.driver-class-name}
# jdbc-url: ${spring.datasource.url}
# username: ${spring.datasource.username}
# password: ${spring.datasource.password}
# pool-name: AmytangHikariCP
# minimum-idle: 10 # 最小空闲连接数量
# idle-timeout: 60000 # 空闲连接存活最大时间,默认600000(10分钟)
# maximum-pool-size: 12 # 连接池最大连接数,默认是10
# auto-commit: true #此属性控制从池返回的连接的默认自动提交行为,默认值:true
# max-lifetime: 0 #此属性控制池中连接的最长生命周期,值0表示无限生命周期,默认1800000即30分钟
# names: ds0
# rules:
# sharding:
# key-generators:
# snowflake:
# type: SNOWFLAKE
# sharding-algorithms:
# t-payment-inline:
# props:
# strategy: standard
# algorithmClassName: com.yifu.cloud.plus.v1.ekp.config.OTAStrategyShardingAlgorithm
# type: CLASS_BASED
# tables:
# ekp_social_info:
# actual-data-nodes: ds0.ekp_social_info_20$->{23..24}
# key-generate-strategy:
# column: fd_id
# key-generator-name: snowflake
# table-strategy:
# standard:
# sharding-column: fd_3adfe8cb96c41e
# sharding-algorithm-name: t-payment-inline
#
# mvc:
# pathmatch:
# matching-strategy: ant_path_matcher
# config:
# activate:
# on-profile: test
# redis:
# host: 192.168.1.65
# port: 22379
# password: '@yf_2017'
### spring security 配置
#security:
# oauth2:
# resource:
# loadBalanced: true
# token-info-uri: http://127.0.0.1:3000/oauth/check_token
# # 直接放行URL
# ignore:
# urls:
# - /v3/api-docs
# - /actuator/**
# - /swagger-ui/**
# 数据源配置
# 数据源配置
spring
:
spring
:
shardingsphere
:
datasource
:
ds0
:
type
:
com.zaxxer.hikari.HikariDataSource
driver-class-name
:
com.mysql.cj.jdbc.Driver
url
:
jdbc:mysql://192.168.1.122:33306/ekp?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowMultiQueries=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai&rewriteBatchedStatements=true&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true
username
:
root
password
:
ll_mysql
hikari
:
driver-class-name
:
${spring.datasource.driver-class-name}
jdbc-url
:
${spring.datasource.url}
username
:
${spring.datasource.username}
password
:
${spring.datasource.password}
pool-name
:
AmytangHikariCP
minimum-idle
:
10
# 最小空闲连接数量
idle-timeout
:
60000
# 空闲连接存活最大时间,默认600000(10分钟)
maximum-pool-size
:
12
# 连接池最大连接数,默认是10
auto-commit
:
true
#此属性控制从池返回的连接的默认自动提交行为,默认值:true
max-lifetime
:
0
#此属性控制池中连接的最长生命周期,值0表示无限生命周期,默认1800000即30分钟
names
:
ds0
rules
:
sharding
:
key-generators
:
snowflake
:
type
:
SNOWFLAKE
sharding-algorithms
:
t-payment-inline
:
props
:
strategy
:
standard
algorithmClassName
:
com.yifu.cloud.plus.v1.ekp.config.OTAStrategyShardingAlgorithm
type
:
CLASS_BASED
tables
:
ekp_social_info
:
actual-data-nodes
:
ds0.ekp_social_info_20$->{23..24}
key-generate-strategy
:
column
:
fd_id
key-generator-name
:
snowflake
table-strategy
:
standard
:
sharding-column
:
fd_3adfe8cb96c41e
sharding-algorithm-name
:
t-payment-inline
mvc
:
mvc
:
pathmatch
:
pathmatch
:
matching-strategy
:
ant_path_matcher
matching-strategy
:
ant_path_matcher
...
@@ -52,6 +76,22 @@ spring:
...
@@ -52,6 +76,22 @@ spring:
host
:
192.168.1.65
host
:
192.168.1.65
port
:
22379
port
:
22379
password
:
'
@yf_2017'
password
:
'
@yf_2017'
datasource
:
type
:
com.zaxxer.hikari.HikariDataSource
driver-class-name
:
com.mysql.cj.jdbc.Driver
username
:
root
password
:
ll_mysql
url
:
jdbc:mysql://192.168.1.122:33306/ekp?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowMultiQueries=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true
hikari
:
driver-class-name
:
${spring.datasource.driver-class-name}
jdbc-url
:
${spring.datasource.url}
username
:
${spring.datasource.username}
password
:
${spring.datasource.password}
minimum-idle
:
10
# 最小空闲连接数量
idle-timeout
:
60000
# 空闲连接存活最大时间,默认600000(10分钟)
maximum-pool-size
:
12
# 连接池最大连接数,默认是10
auto-commit
:
true
#此属性控制从池返回的连接的默认自动提交行为,默认值:true
max-lifetime
:
0
#此属性控制池中连接的最长生命周期,值0表示无限生命周期,默认1800000即30分钟
## spring security 配置
## spring security 配置
security
:
security
:
oauth2
:
oauth2
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment