-
-
Notifications
You must be signed in to change notification settings - Fork 10.2k
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
使用openapi创建app是,无法获取组织列表(Organization) #5349
Comments
我理解这个场景是当用户只有openapi的权限、没有portal账号登陆权限时出现的? 这样的话 portal的 OrganizationController 的信息不做权限校验不符合安全的需求,我认为在 openapi 中对齐这个功能同样支持获取组织列表是更加合理的方案。 |
是的,在使用openapi访问时
是的,在openapi里实现也可以。但按我的理解,这里只做查询,不校验的问题应该也不大
|
我赞同 @spaceluke 的建议,可以考虑在 openapi 中增加获取组织列表的接口 |
Hello, please assign this task to me. I want to implement it. @nobodyiam |
I’ve tried to understand the code. As a newcomer to the community, I still need to confirm: 我阅读了一下项目代码。作为首次尝试参与项目的新人,我还有一些在开发前需要确认的事项: |
Yes, you would need to submit two separate PRs in two projects. Some tips that may not be necessary😃: the general interface locates at openapi/api, and we implement it in both client(in apollo-java) and server(in apollo). |
Hi @spaceluke , I think I’ve completed my coding work but am stuck on an unresolved issue. After modifying the local I’ve already tried:
Unfortunately, the issue persists. Could I submit a PR with the current code? I’d greatly appreciate guidance from experienced developers to identify the root cause. 你好,我认为我的编码工作已经完成,但遇到了一个无法自行解决的问题。在本地修改完 已尝试的解决步骤
问题仍未解决。我可以提交一个当前代码的PR以求帮助吗 ?我非常希望有经验的开发者协助排查问题原因。 Error Details: Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2025-03-25 14:41:18.356 ERROR 9792 --- [ main] o.s.boot.SpringApplication [starting:portal] : Application run failed
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.ctrip.framework.apollo.portal.PortalApplication]; nested exception is java.io.FileNotFoundException: class path resource [com/ctrip/framework/apollo/openapi/api/OrganizationOpenApiService.class] cannot be opened because it does not exist
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:188)
at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:331)
at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112)
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:748)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:307)
at org.springframework.boot.builder.SpringApplicationBuilder.run(SpringApplicationBuilder.java:164)
at com.ctrip.framework.apollo.assembly.ApolloApplication.main(ApolloApplication.java:86)
Caused by: java.io.FileNotFoundException: class path resource [com/ctrip/framework/apollo/openapi/api/OrganizationOpenApiService.class] cannot be opened because it does not exist
at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:199)
at org.springframework.core.type.classreading.SimpleMetadataReader.getClassReader(SimpleMetadataReader.java:55)
at org.springframework.core.type.classreading.SimpleMetadataReader.<init>(SimpleMetadataReader.java:48)
at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:103)
at org.springframework.boot.type.classreading.ConcurrentReferenceCachingMetadataReaderFactory.createMetadataReader(ConcurrentReferenceCachingMetadataReaderFactory.java:86)
at org.springframework.boot.type.classreading.ConcurrentReferenceCachingMetadataReaderFactory.getMetadataReader(ConcurrentReferenceCachingMetadataReaderFactory.java:73)
at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:81)
at org.springframework.context.annotation.ConfigurationClassParser.asSourceClass(ConfigurationClassParser.java:696)
at org.springframework.context.annotation.ConfigurationClassParser$SourceClass.getInterfaces(ConfigurationClassParser.java:1024)
at org.springframework.context.annotation.ConfigurationClassParser.processInterfaces(ConfigurationClassParser.java:385)
at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:331)
at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:249)
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:198)
at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:303)
at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:249)
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:206)
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:174)
... 12 common frames omitted |
@wjwang00 Hi, I had tried to clone your repo (both apollo and apollo-java) in my local machine, and it worked well(at least the project could start successfully). Maybe there is some problems with your maven in your local system?
Maybe try this would help you. Thanks for your contribution, good luck debugging~ |
Thank you for your help. I have already resolved the issue and submitted a PR. |
…5365) * feat: Provide a new open APl to return the organization list(#5349) * update the CHANGES.md * Update apollo-portal/src/main/java/com/ctrip/framework/apollo/openapi/server/service/ServerOrganizationOpenApiService.java Co-authored-by: Jason Song <[email protected]> * Update apollo-portal/src/main/java/com/ctrip/framework/apollo/openapi/util/OpenApiBeanUtils.java Co-authored-by: Jason Song <[email protected]> * Update apollo-portal/src/main/java/com/ctrip/framework/apollo/openapi/v1/controller/OrganizationController.java Co-authored-by: Jason Song <[email protected]> * Update apollo-portal/src/main/java/com/ctrip/framework/apollo/openapi/util/OpenApiBeanUtils.java Co-authored-by: Jason Song <[email protected]> * update the CHANGES.md * Update CHANGES.md --------- Co-authored-by: Jason Song <[email protected]>
你的特性请求和某个问题有关吗?请描述
com.ctrip.framework.apollo.portal.controller.OrganizationController#loadOrganization
时,需要登录权限com.ctrip.framework.apollo.openapi.client.ApolloOpenApiClient#createApp
),需要参数orgId
、orgName
,这两个参数无从获取。清晰简洁地描述一下你希望的解决方案
com.ctrip.framework.apollo.portal.controller.OrganizationController
的权限校验The text was updated successfully, but these errors were encountered: