Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
KnowledgePlanet
road-map
xfg-dev-tech-db-router
提交
4e4177e1
xfg-dev-tech-db-router
项目概览
KnowledgePlanet
/
road-map
/
xfg-dev-tech-db-router
通知
239
Star
21
Fork
8
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
xfg-dev-tech-db-router
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
4e4177e1
编写于
2月 19, 2021
作者:
小傅哥
⛹
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
小傅哥,数据库路由组件设计
上级
14e58c1b
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
47 addition
and
8 deletion
+47
-8
src/main/java/cn/bugstack/middleware/db/router/DBRouterJoinPoint.java
...a/cn/bugstack/middleware/db/router/DBRouterJoinPoint.java
+9
-5
src/main/java/cn/bugstack/middleware/db/router/annotation/DBRouter.java
...cn/bugstack/middleware/db/router/annotation/DBRouter.java
+4
-2
src/test/java/cn/bugstack/middleware/test/ApiTest.java
src/test/java/cn/bugstack/middleware/test/ApiTest.java
+18
-1
src/test/java/cn/bugstack/middleware/test/IUserDao.java
src/test/java/cn/bugstack/middleware/test/IUserDao.java
+16
-0
未找到文件。
src/main/java/cn/bugstack/middleware/db/router/DBRouterJoinPoint.java
浏览文件 @
4e4177e1
...
...
@@ -14,6 +14,7 @@ import org.aspectj.lang.reflect.MethodSignature;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.core.annotation.Order
;
import
org.springframework.stereotype.Component
;
import
java.lang.reflect.Method
;
...
...
@@ -24,6 +25,7 @@ import java.lang.reflect.Method;
* Create by 小傅哥(fustack)
*/
@Aspect
//@Order(1)
@Component
(
"db-router-point"
)
public
class
DBRouterJoinPoint
{
...
...
@@ -36,12 +38,10 @@ public class DBRouterJoinPoint {
public
void
aopPoint
()
{
}
@Around
(
"aopPoint()"
)
public
Object
doRouter
(
ProceedingJoinPoint
jp
)
throws
Throwable
{
@Around
(
"aopPoint()
&& @annotation(dbRouter)
"
)
public
Object
doRouter
(
ProceedingJoinPoint
jp
,
DBRouter
dbRouter
)
throws
Throwable
{
Method
method
=
getMethod
(
jp
);
DBRouter
dbRouter
=
method
.
getAnnotation
(
DBRouter
.
class
);
// String dbKey = dbRouter.key();
String
dbKey
=
"userId"
;
String
dbKey
=
dbRouter
.
key
();
if
(
StringUtils
.
isBlank
(
dbKey
))
throw
new
RuntimeException
(
"annotation DBRouter key is null!"
);
// 计算路由
String
dbKeyAttr
=
getAttrValue
(
dbKey
,
jp
.
getArgs
());
...
...
@@ -66,6 +66,10 @@ public class DBRouterJoinPoint {
private
Method
getMethod
(
JoinPoint
jp
)
throws
NoSuchMethodException
{
Signature
sig
=
jp
.
getSignature
();
MethodSignature
methodSignature
=
(
MethodSignature
)
sig
;
Class
<?>[]
interfaces
=
getClass
(
jp
).
getInterfaces
();
return
getClass
(
jp
).
getMethod
(
methodSignature
.
getName
(),
methodSignature
.
getParameterTypes
());
}
...
...
src/main/java/cn/bugstack/middleware/db/router/annotation/DBRouter.java
浏览文件 @
4e4177e1
...
...
@@ -2,13 +2,15 @@ package cn.bugstack.middleware.db.router.annotation;
import
java.lang.annotation.*
;
/**
* 博客:https://bugstack.cn - 沉淀、分享、成长,让自己和他人都能有所收获!
* 公众号:bugstack虫洞栈
* Create by 小傅哥(fustack)
*/
//@Retention(RetentionPolicy.RUNTIME)
//@Target({ElementType.TYPE, ElementType.METHOD})
@Documented
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Target
({
ElementType
.
TYPE
,
ElementType
.
METHOD
})
public
@interface
DBRouter
{
String
key
()
default
""
;
...
...
src/test/java/cn/bugstack/middleware/test/ApiTest.java
浏览文件 @
4e4177e1
package
cn.bugstack.middleware.test
;
import
cn.bugstack.middleware.db.router.annotation.DBRouter
;
import
org.junit.Test
;
import
java.lang.reflect.AnnotatedType
;
import
java.lang.reflect.Method
;
/**
* 博客:https://bugstack.cn - 沉淀、分享、成长,让自己和他人都能有所收获!
* 公众号:bugstack虫洞栈
...
...
@@ -33,9 +37,22 @@ public class ApiTest {
}
@Test
public
void
test_str_format
(){
public
void
test_str_format
()
{
System
.
out
.
println
(
String
.
format
(
"db%02d"
,
1
));
System
.
out
.
println
(
String
.
format
(
"_%02d"
,
25
));
}
@Test
public
void
test_annotation
()
throws
NoSuchMethodException
{
Class
<
IUserDao
>
iUserDaoClass
=
IUserDao
.
class
;
Method
method
=
iUserDaoClass
.
getMethod
(
"insertUser"
,
String
.
class
);
DBRouter
dbRouter
=
method
.
getAnnotation
(
DBRouter
.
class
);
System
.
out
.
println
(
dbRouter
.
key
());
}
}
src/test/java/cn/bugstack/middleware/test/IUserDao.java
0 → 100644
浏览文件 @
4e4177e1
package
cn.bugstack.middleware.test
;
import
cn.bugstack.middleware.db.router.annotation.DBRouter
;
/**
* 博客:https://bugstack.cn - 沉淀、分享、成长,让自己和他人都能有所收获!
* 公众号:bugstack虫洞栈
* Create by 小傅哥(fustack)
*/
public
interface
IUserDao
{
@DBRouter
(
key
=
"userId"
)
void
insertUser
(
String
req
);
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录