feat: add SkyWalking integration plugin and guide#134
Draft
ljluestc wants to merge 1 commit intossssssss-team:masterfrom
Draft
feat: add SkyWalking integration plugin and guide#134ljluestc wants to merge 1 commit intossssssss-team:masterfrom
ljluestc wants to merge 1 commit intossssssss-team:masterfrom
Conversation
- add magic-api-plugin-skywalking module and auto configuration - add request interceptor and tests for SkyWalking tracing - add integration guide and README entry for issue ssssssss-team#122 Closes ssssssss-team#122
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概述
本 PR 修复 #90 中报告的问题:当使用 Redis 作为资源存储类型时,应用无法启动。
Closes #90
问题分析
当配置
magic-api.resource.type=redis时,应用启动报错:根本原因:
magicResourceService方法直接依赖ResourcebeanResource类型的 bean主要改动
magic-api-plugin-redis依赖,确保 Redis 资源实现可用magicResourceService方法的参数从直接依赖Resource改为ObjectProvider<Resource>兼容性与影响
使用方式
配置
magic-api.resource.type=redis后,应用可正常启动,Redis 作为资源存储类型。