{"id":15014308,"url":"https://github.com/apple/servicetalk","last_synced_at":"2025-05-14T04:08:20.717Z","repository":{"id":37502843,"uuid":"147747963","full_name":"apple/servicetalk","owner":"apple","description":"A networking framework that evolves with your application","archived":false,"fork":false,"pushed_at":"2025-05-08T15:41:44.000Z","size":71697,"stargazers_count":959,"open_issues_count":70,"forks_count":185,"subscribers_count":42,"default_branch":"main","last_synced_at":"2025-05-08T16:46:06.137Z","etag":null,"topics":["framework","grpc","http","http2","java","microservices","netty","reactive","reactive-streams","rpc"],"latest_commit_sha":null,"homepage":"https://docs.servicetalk.io","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apple.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":"CONTRIBUTING.adoc","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.adoc","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":"GOVERNANCE.adoc","roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-09-07T00:14:48.000Z","updated_at":"2025-05-08T15:41:49.000Z","dependencies_parsed_at":"2023-10-02T22:17:44.821Z","dependency_job_id":"7a938a4f-a2e0-4fc6-bba3-19790814f4af","html_url":"https://github.com/apple/servicetalk","commit_stats":{"total_commits":4151,"total_committers":73,"mean_commits":"56.863013698630134","dds":0.7639123102866779,"last_synced_commit":"ab4e9b2ecc27f7e2e7dd59fe3b833e785d81146f"},"previous_names":[],"tags_count":134,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apple%2Fservicetalk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apple%2Fservicetalk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apple%2Fservicetalk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apple%2Fservicetalk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apple","download_url":"https://codeload.github.com/apple/servicetalk/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254069688,"owners_count":22009558,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["framework","grpc","http","http2","java","microservices","netty","reactive","reactive-streams","rpc"],"created_at":"2024-09-24T19:45:26.921Z","updated_at":"2025-05-14T04:08:15.691Z","avatar_url":"https://github.com/apple.png","language":"Java","readme":"= ServiceTalk\n\nimage:https://img.shields.io/maven-central/v/io.servicetalk/servicetalk-annotations?color=blue[Maven Central]\nimage:https://github.com/apple/servicetalk/actions/workflows/ci-snapshot.yml/badge.svg[Snapshot Publisher]\nimage:https://img.shields.io/nexus/s/io.servicetalk/servicetalk-annotations?color=blue\u0026server=https%3A%2F%2Foss.sonatype.org[Sonatype Snapshot]\n\nServiceTalk is a JVM network application framework with APIs tailored to specific protocols (e.g. HTTP/1.x,\nHTTP/2.x, etc...) and supports multiple programming paradigms.\n\nIt is built on link:https://netty.io[Netty] and is designed to provide most of the performance/scalability benefits of\nNetty for common networking protocols used in service to service communication. ServiceTalk provides server support and\n\"smart client\" like features such as client-side load balancing and service discovery integration.\n\nSee the link:https://docs.servicetalk.io/[ServiceTalk docs] for more information.\n\n== Getting Started\n\nServiceTalk releases are available on link:https://repo1.maven.org/maven2/io/servicetalk/[Maven Central].\n\nRefer to the link:https://docs.servicetalk.io/[ServiceTalk docs] for various examples that will get you started with the\ndifferent features of ServiceTalk.\n\nNOTE: Builds of the development version are available in\nlink:https://oss.sonatype.org/content/repositories/snapshots/io/servicetalk/[Sonatype's snapshots Maven repository].\n\n== Supported JVM\nThe minimum supported JDK version is 1.8.\n\n== Compatibility\nServiceTalk follows link:https://semver.org/#semantic-versioning-200[SemVer 2.0.0]. API/ABI breaking changes will\nrequire package renaming for that module to avoid runtime classpath conflicts.\n\nNOTE: `0.x.y` releases are not stable and are permitted to break API/ABI.\n\n== Contributor Setup\n\nIMPORTANT: If you're intending to contribute to ServiceTalk,\n           make sure to first read the xref:CONTRIBUTING.adoc[contribution guidelines].\n\nServiceTalk uses link:https://gradle.org[Gradle] as its build tool and only requires JDK 8 or higher to be\npre-installed. ServiceTalk ships with the Gradle Wrapper, which means that there is no need to install Gradle on your\nmachine beforehand.\n\n=== File Encoding\n\nServiceTalk's source code is UTF-8 encoded: make sure your filesystem supports it before attempting to build\nthe project. Setting the `JAVA_TOOL_OPTIONS` env var to `-Dfile.encoding=UTF-8` should help building the project in\nnon-UTF-8 environments. Editors and IDEs must also support UTF-8 in order to successfully edit ServiceTalk's source\ncode.\n\n=== Build Commands\n\nYou should be able to run the following command to build ServiceTalk and verify that all\ntests and code quality checks pass:\n\n[source,shell]\n----\n$ ./gradlew build\n----\n\nThe supported IDE is link:https://www.jetbrains.com/idea[IntelliJ IDEA].\nIn order to generate IntelliJ IDEA project files for ServiceTalk,\nyou can run the following command:\n\n[source,shell]\n----\n$ ./gradlew idea\n----\n\nWhen done, running one of following commands would open ServiceTalk in IntelliJ:\n\n.Generic\n[source,shell]\n----\n$ idea .\n----\n\n.macOS\n[source,shell]\n----\n$ open servicetalk.ipr\n----\n\n=== Lock files\n\nWe use lock files to ensure that all changes to dependencies are intentional, and don't go unnoticed.\n\nWhen updating dependencies, first make the intended modifications to `gradle.properties`, then run the following command to update the lock files:\n\n[source,shell]\n----\n$ ./gradlew resolveAndLockAll --write-locks\n----\n\n== Project Communication\nWe encourage your participation asking questions and helping improve the ServiceTalk project.\nlink:https://github.com/apple/servicetalk/issues[Github issues] and\nlink:https://github.com/apple/servicetalk/pulls[pull requests] are the primary mechanisms of\nparticipation and communication for ServiceTalk.\n","funding_links":[],"categories":["Projects","项目","开发框架"],"sub_categories":["Networking","联网"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapple%2Fservicetalk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapple%2Fservicetalk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapple%2Fservicetalk/lists"}