-
Notifications
You must be signed in to change notification settings - Fork 203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature: 轻量化部署优化 #2643 #2663
feature: 轻量化部署优化 #2643 #2663
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,11 +17,13 @@ | |
@Aspect | ||
public class IamExceptionHandleAspect { | ||
|
||
@Pointcut("execution (* com.tencent.bk.sdk.iam.service.impl.PolicyServiceImpl.*(..))") | ||
@Pointcut("within(com.tencent.bk.sdk.iam.service.impl.PolicyServiceImpl) " + | ||
"&& execution (* com.tencent.bk.sdk.iam.service.impl.PolicyServiceImpl.*(..))") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 搜索范围可以进一步细化到com.tencent.bk.sdk.iam.service.impl.PolicyServiceImpl There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fix |
||
public void processPolicyServiceAction() { | ||
} | ||
|
||
@Pointcut("execution (* com.tencent.bk.sdk.iam.helper.AuthHelper.isAllowed(..))") | ||
@Pointcut("within(com.tencent.bk.sdk.iam.helper.AuthHelper) " + | ||
"&& execution (* com.tencent.bk.sdk.iam.helper.AuthHelper.isAllowed(..))") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 搜索范围可以进一步细化到com.tencent.bk.sdk.iam.helper.AuthHelper There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fix |
||
public void processIsAllowedAction() { | ||
} | ||
|
||
|
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
搜索范围可以进一步细化到com.tencent.bk.job.common.iam.service.impl.BusinessAuthServiceImpl
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix