{"id":29848540,"url":"https://github.com/vaibhav-sinha/spring-remoting-grpc","last_synced_at":"2026-05-10T05:15:06.802Z","repository":{"id":57723809,"uuid":"96706570","full_name":"vaibhav-sinha/spring-remoting-grpc","owner":"vaibhav-sinha","description":"This library enables using Spring Remoting with gRPC as the underlying transport.","archived":false,"fork":false,"pushed_at":"2017-08-15T17:42:13.000Z","size":10,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-29T17:40:24.498Z","etag":null,"topics":["grpc","grpc-java","java","java8","protobuf","protobuf3","remoting","rpc","spring","springframework"],"latest_commit_sha":null,"homepage":"","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/vaibhav-sinha.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-07-09T19:31:33.000Z","updated_at":"2024-08-31T17:54:28.000Z","dependencies_parsed_at":"2022-08-25T13:00:29.018Z","dependency_job_id":null,"html_url":"https://github.com/vaibhav-sinha/spring-remoting-grpc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vaibhav-sinha/spring-remoting-grpc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaibhav-sinha%2Fspring-remoting-grpc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaibhav-sinha%2Fspring-remoting-grpc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaibhav-sinha%2Fspring-remoting-grpc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaibhav-sinha%2Fspring-remoting-grpc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vaibhav-sinha","download_url":"https://codeload.github.com/vaibhav-sinha/spring-remoting-grpc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaibhav-sinha%2Fspring-remoting-grpc/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267737543,"owners_count":24136600,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["grpc","grpc-java","java","java8","protobuf","protobuf3","remoting","rpc","spring","springframework"],"created_at":"2025-07-29T19:25:27.939Z","updated_at":"2026-05-10T05:15:06.759Z","avatar_url":"https://github.com/vaibhav-sinha.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spring Remoting gRPC\n\nThis library enables using Spring Remoting with gRPC as the underlying transport.\n\n## Installation\n\nThe artifact is available on Maven Central Repository and can be downloaded by adding the following dependency in pom.xml\n\n    \u003cdependency\u003e\n        \u003cgroupId\u003ecom.github.vaibhav-sinha\u003c/groupId\u003e\n        \u003cartifactId\u003espring-remoting-grpc\u003c/artifactId\u003e\n        \u003cversion\u003e0.1.0\u003c/version\u003e\n    \u003c/dependency\u003e\n\n## Usage\n\nCreate a Service Exporter bean in the context of the service you want to expose\n\n    @Bean\n    public GrpcInvokerServiceExporter userServiceServer() {\n        GrpcInvokerServiceExporter grpcInvokerServiceExporter = new GrpcInvokerServiceExporter();\n        grpcInvokerServiceExporter.setServiceInterface(UserService.class);\n        grpcInvokerServiceExporter.setService(userService());\n        grpcInvokerServiceExporter.setPort(8888);\n        return grpcInvokerServiceExporter;\n    }\n\nCreate a Proxy of the service on the client end\n\n    @Bean\n    public UserService userServiceClient() throws Exception {\n        return (UserService) grpcInvokerProxyFactoryBean().getObject();\n    }\n\n    @Bean\n    public GrpcInvokerProxyFactoryBean grpcInvokerProxyFactoryBean() {\n        GrpcInvokerProxyFactoryBean grpcInvokerProxyFactoryBean = new GrpcInvokerProxyFactoryBean();\n        grpcInvokerProxyFactoryBean.setServiceUrl(\"localhost:8888\");\n        grpcInvokerProxyFactoryBean.setServiceInterface(UserService.class);\n        return grpcInvokerProxyFactoryBean;\n    }\n\nLook in the tests to find the complete example.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvaibhav-sinha%2Fspring-remoting-grpc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvaibhav-sinha%2Fspring-remoting-grpc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvaibhav-sinha%2Fspring-remoting-grpc/lists"}