{"id":20246631,"url":"https://github.com/coding-hui/wecoding-sdk-java","last_synced_at":"2026-05-08T21:33:37.509Z","repository":{"id":182938730,"uuid":"669354017","full_name":"coding-hui/wecoding-sdk-java","owner":"coding-hui","description":"IAM Java SDK","archived":false,"fork":false,"pushed_at":"2023-11-29T21:49:38.000Z","size":128,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-02T01:09:09.681Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coding-hui.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-22T02:52:25.000Z","updated_at":"2023-09-02T01:18:47.000Z","dependencies_parsed_at":"2023-07-22T07:12:08.329Z","dependency_job_id":"e1fec501-a75f-4eeb-9ed2-88595a396af2","html_url":"https://github.com/coding-hui/wecoding-sdk-java","commit_stats":null,"previous_names":["coding-hui/iam-sdk-java","coding-hui/wecoding-sdk-java"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/coding-hui/wecoding-sdk-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-hui%2Fwecoding-sdk-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-hui%2Fwecoding-sdk-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-hui%2Fwecoding-sdk-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-hui%2Fwecoding-sdk-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coding-hui","download_url":"https://codeload.github.com/coding-hui/wecoding-sdk-java/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-hui%2Fwecoding-sdk-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32798431,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-14T09:31:31.693Z","updated_at":"2026-05-08T21:33:37.491Z","avatar_url":"https://github.com/coding-hui.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IAM Java Management SDK\n\nThis repository contains the IAM management SDK for Java.\n\n## Getting Started\n\n### Reference Documentation\n\nFor further reference, please consider the following sections:\n\n* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)\n* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/3.1.2/maven-plugin/reference/html/)\n* [Create an OCI image](https://docs.spring.io/spring-boot/docs/3.1.2/maven-plugin/reference/html/#build-image)\n* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/docs/3.1.2/reference/html/native-image.html#native-image)\n* [Spring Configuration Processor](https://docs.spring.io/spring-boot/docs/3.1.2/reference/htmlsingle/#appendix.configuration-metadata.annotation-processor)\n* [Spring Boot DevTools](https://docs.spring.io/spring-boot/docs/3.1.2/reference/htmlsingle/#using.devtools)\n* [Spring Web](https://docs.spring.io/spring-boot/docs/3.1.2/reference/htmlsingle/#web)\n\n### Guides\n\nThe following guides illustrate how to use some features concretely:\n\n* [Building a RESTful Web Service](https://spring.io/guides/gs/rest-service/)\n* [Serving Web Content with Spring MVC](https://spring.io/guides/gs/serving-web-content/)\n* [Building REST services with Spring](https://spring.io/guides/tutorials/rest/)\n\n### Additional Links\n\nThese additional references should also help you:\n\n* [Configure AOT settings in Build Plugin](https://docs.spring.io/spring-boot/docs/3.1.2/maven-plugin/reference/htmlsingle/#aot)\n\n## GraalVM Native Support\n\nThis project has been configured to let you generate either a lightweight container or a native executable.\nIt is also possible to run your tests in a native image.\n\n### Lightweight Container with Cloud Native Buildpacks\n\nIf you're already familiar with Spring Boot container images support, this is the easiest way to get started.\nDocker should be installed and configured on your machine prior to creating the image.\n\nTo create the image, run the following goal:\n\n```\n$ ./mvnw spring-boot:build-image -Pnative\n```\n\nThen, you can run the app like any other container:\n\n```\n$ docker run --rm -p 8080:8080 iam-sdk-java:0.8-SNAPSHOT\n```\n\n### Executable with Native Build Tools\n\nUse this option if you want to explore more options such as running your tests in a native image.\nThe GraalVM `native-image` compiler should be installed and configured on your machine.\n\nNOTE: GraalVM 22.3+ is required.\n\nTo create the executable, run the following goal:\n\n```\n$ ./mvnw native:compile -Pnative\n```\n\nThen, you can run the app as follows:\n\n```\n$ target/iam-sdk-java\n```\n\nYou can also run your existing tests suite in a native image.\nThis is an efficient way to validate the compatibility of your application.\n\nTo run your existing tests in a native image, run the following goal:\n\n```\n$ ./mvnw test -PnativeTest\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoding-hui%2Fwecoding-sdk-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoding-hui%2Fwecoding-sdk-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoding-hui%2Fwecoding-sdk-java/lists"}