Skip to content
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

Open
xiaoma20082008 opened this issue Feb 27, 2025 · 9 comments
Open
Assignees
Labels
area/openapi apollo-openapi feature request Categorizes issue as related to a new feature. good first issue good first issue Good for beginners

Comments

@xiaoma20082008
Copy link

你的特性请求和某个问题有关吗?请描述

  1. 没有提供api获取组织列表
  2. 使用接口com.ctrip.framework.apollo.portal.controller.OrganizationController#loadOrganization时,需要登录权限
  3. 导致:当使用openapi创建项目时(com.ctrip.framework.apollo.openapi.client.ApolloOpenApiClient#createApp),需要参数orgIdorgName,这两个参数无从获取。

清晰简洁地描述一下你希望的解决方案

  1. 去掉com.ctrip.framework.apollo.portal.controller.OrganizationController的权限校验
@spaceluke
Copy link
Member

我理解这个场景是当用户只有openapi的权限、没有portal账号登陆权限时出现的?

这样的话 portal的 OrganizationController 的信息不做权限校验不符合安全的需求,我认为在 openapi 中对齐这个功能同样支持获取组织列表是更加合理的方案。

@xiaoma20082008
Copy link
Author

是的,在使用openapi访问时

我理解这个场景是当用户只有openapi的权限、没有portal账号登陆权限时出现的?

是的,在openapi里实现也可以。但按我的理解,这里只做查询,不校验的问题应该也不大

这样的话 portal的 OrganizationController 的信息不做权限校验不符合安全的需求,我认为在 openapi 中对齐这个功能同样支持获取组织列表是更加合理的方案。

@nobodyiam
Copy link
Member

我赞同 @spaceluke 的建议,可以考虑在 openapi 中增加获取组织列表的接口

@spaceluke spaceluke added area/openapi apollo-openapi feature request Categorizes issue as related to a new feature. good first issue good first issue Good for beginners labels Mar 3, 2025
@wjwang00
Copy link
Contributor

wjwang00 commented Mar 21, 2025

Hello, please assign this task to me. I want to implement it. @nobodyiam

@spaceluke spaceluke assigned spaceluke and wjwang00 and unassigned spaceluke Mar 21, 2025
@wjwang00
Copy link
Contributor

wjwang00 commented Mar 24, 2025

I’ve tried to understand the code. As a newcomer to the community, I still need to confirm:
For the implementation of this requirement, first I need to add a new interface for querying organizations in the openapi package of the Apollo project. Then I also need to add corresponding methods in the Apollo Java Clients project. Am I correct in my understanding? Does this mean that I need to submit two separate PRs in the two projects respectively?

我阅读了一下项目代码。作为首次尝试参与项目的新人,我还有一些在开发前需要确认的事项:
对于这个需求的实现,首先我需要在 Apollo 项目的 openapi 包中添加一个新的接口,用于查询组织列表。然后需要在 Apollo Java Clients 项目中的ApolloOpenApiClient类添加相应的方法。请问我的理解是否正确?这是否意味着我需要分别在这两个仓库中都提交一个的 PR?

@spaceluke

@spaceluke
Copy link
Member

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).

@wjwang00
Copy link
Contributor

wjwang00 commented Mar 25, 2025

Hi @spaceluke , I think I’ve completed my coding work but am stuck on an unresolved issue. After modifying the local apollo-java project, I ran mvn install to deploy it to my local Maven repository. In the apollo project, I can reference the new classes added in apollo-java during development without issues. I also confirmed that the compiled .class files (e.g., OrganizationOpenApiService.class) exist in the local repository’s JAR (apollo-openapi-2.5.0-SNAPSHOT.jar). However, when attempting to run the application locally (which worked before my code changes), it now fails with an error stating that the new classes from apollo-java are missing.

I’ve already tried:

  • Clearing the IDE cache
  • Running mvn clean and rebuilding

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.

你好,我认为我的编码工作已经完成,但遇到了一个无法自行解决的问题。在本地修改完apollo-java项目后,我执行了mvn install命令将其部署到本地Maven仓库。在apollo项目中开发时,可以正常引用apollo-java新增的类。我检查了本地仓库中的apollo-openapi-2.5.0-SNAPSHOT.jar文件,确认新增的类(如OrganizationOpenApiService.class)已正确编译到JAR中。然而,当尝试本地运行应用时(代码修改前可正常启动),却报错提示找不到apollo-java新增的类,导致启动失败。

已尝试的解决步骤

  • 清理IDE缓存
  • 执行mvn clean并重新构建

问题仍未解决。​我可以提交一个当前代码的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

@spaceluke
Copy link
Member

@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?
Since you mentioned

confirmed that the compiled .class files (e.g., OrganizationOpenApiService.class) exist in the local repository’s JAR (apollo-openapi-2.5.0-SNAPSHOT.jar)

Maybe try this would help you.

Image

Thanks for your contribution, good luck debugging~

@wjwang00
Copy link
Contributor

@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? Since you mentioned

confirmed that the compiled .class files (e.g., OrganizationOpenApiService.class) exist in the local repository’s JAR (apollo-openapi-2.5.0-SNAPSHOT.jar)

Maybe try this would help you.

Image

Thanks for your contribution, good luck debugging~

Thank you for your help. I have already resolved the issue and submitted a PR.

nobodyiam added a commit that referenced this issue Mar 30, 2025
…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]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/openapi apollo-openapi feature request Categorizes issue as related to a new feature. good first issue good first issue Good for beginners
Projects
None yet
Development

No branches or pull requests

4 participants