{"id":25569453,"url":"https://github.com/trpc-group/trpc-java","last_synced_at":"2026-01-31T13:53:57.041Z","repository":{"id":210850640,"uuid":"707163647","full_name":"trpc-group/trpc-java","owner":"trpc-group","description":"A pluggable, high-performance RPC framework written in java","archived":false,"fork":false,"pushed_at":"2026-01-27T08:10:11.000Z","size":4525,"stargazers_count":92,"open_issues_count":5,"forks_count":44,"subscribers_count":7,"default_branch":"master","last_synced_at":"2026-01-27T20:25:37.895Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trpc-group.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE-OF-CONDUCT.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-19T10:54:11.000Z","updated_at":"2026-01-16T07:12:21.000Z","dependencies_parsed_at":"2024-05-16T00:52:31.155Z","dependency_job_id":"7a6c570d-21d4-461c-b077-2e3824ec07c7","html_url":"https://github.com/trpc-group/trpc-java","commit_stats":null,"previous_names":["trpc-group/trpc-java"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/trpc-group/trpc-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trpc-group%2Ftrpc-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trpc-group%2Ftrpc-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trpc-group%2Ftrpc-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trpc-group%2Ftrpc-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trpc-group","download_url":"https://codeload.github.com/trpc-group/trpc-java/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trpc-group%2Ftrpc-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28944789,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T13:02:32.153Z","status":"ssl_error","status_checked_at":"2026-01-31T13:00:07.528Z","response_time":128,"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":"2025-02-21T00:02:23.824Z","updated_at":"2026-01-31T13:53:57.035Z","avatar_url":"https://github.com/trpc-group.png","language":"Java","funding_links":[],"categories":["开发框架"],"sub_categories":[],"readme":"English | [中文](README.zh_CN.md)\n\n# tRPC-Java Framework\n\n[![LICENSE](https://img.shields.io/badge/license-Apache--2.0-green.svg)](https://github.com/trpc-group/trpc-java/blob/master/LICENSE)\n[![Releases](https://img.shields.io/github/v/release/trpc-group/trpc-java.svg?style=flat-square)](https://github.com/trpc-group/trpc-java/releases)\n[![Docs](https://img.shields.io/badge/docs-latest-green)](https://github.com/trpc-group/trpc-java/tree/master/docs/)\n[![Coverage](https://codecov.io/gh/trpc-group/trpc-java/graph/badge.svg?token=PCzWvpNAIk)](https://codecov.io/gh/trpc-group/trpc-java)\n\ntRPC-Java, as the Java language implementation of [tRPC](https://github.com/trpc-group/trpc), is a\nbattle-tested microservices framework that has been extensively validated in production\nenvironments. It not only delivers high performance but also offers ease of use and testability.\n\nFor more information, please refer to the [related documentation](#related-documentation).\n\n## Overall Architecture\n\n![Architecture](.resources/overall.png)\n\ntRPC-Java has the following features:\n\n- Works across languages\n- Support multi-protocols\n- Streaming RPC\n- Rich plugin ecosystem\n- Scalability\n- Load balance\n- Flow \u0026 Overload control\n- Support coroutine\n\n## Tutorial\n\n### Dependency environment\n\nJDK 1.8.0_251+, Maven 3.6.3+\n\n\u003e Please compile tRPC-Java through `mvn -Dmaven.test.skip=true clean install`. If you want to run unit tests, you need to use JDK 8.\n\n### Import dependencies\n\n```pom\n\u003cdependencies\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003ecom.tencent.trpc\u003c/groupId\u003e\n        \u003cartifactId\u003etrpc-mini\u003c/artifactId\u003e\n        \u003cversion\u003e1.0.0\u003c/version\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\n#### Use coroutine\n\nIt is recommended to use [Tencent Kona JDK FIBER 8](https://github.com/Tencent/TencentKona-8). For\nusage examples,\nsee [coroutine](https://github.com/trpc-group/trpc-java-examples/tree/master/trpc-coroutine)\n\n\u003ch2 id=\"2\"\u003eRelated Documentation\u003c/h2\u003e\n\n- [Quick start](/docs/en/1.quick_start.md)\n- [Basic tutorial](/docs/en/2.basic_tutorial.md)\n- [Stub code generation tool](/docs/en/3.protobuf_stub_plugin.md)\n- [Configuration parameters](/docs/en/4.configuration.md)\n- [More examples](https://github.com/trpc-group/trpc-java-examples)\n\n## How to Contribute\n\nIf you're interested in contributing, please take a look at\nthe [contribution guidelines](CONTRIBUTING.md) and check\nthe [unassigned issues](https://github.com/trpc-group/trpc-java/issues) in the repository. Claim a\ntask and let's contribute together to tRPC-Java.\n\n## LICENSE\n\ntRPC-Java is licensed under the [Apache License Version 2.0](LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrpc-group%2Ftrpc-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrpc-group%2Ftrpc-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrpc-group%2Ftrpc-java/lists"}