SOFARPC is a high-performance Java RPC framework

SOFARPC is a high-performance Java RPC framework

2022-09-27 0 1,523
Resource Number 43558 Last Updated 2025-02-24
¥ 0HKD Upgrade VIP
Download Now Matters needing attention
Can't download? Please contact customer service to submit a link error!
Value-added Service: Installation Guide Environment Configuration Secondary Development Template Modification Source Code Installation

The SOFARPC recommended in this issue is a highly scalable, high-performance, production-grade Java RPC framework.

Project Description

SOFARPC is committed to simplifying RPC calls between applications and providing applications with convenient, transparent, stable and efficient point-to-point remote service invocation solutions. For the convenience of users and developers to extend the functionality, SOFARPC provides a rich model abstraction and extensible interface, including filters, routing, load balancing and so on. At the same time, it provides rich microservice governance schemes around SOFARPC framework and its peripheral components.

SOFARPC is a high-performance Java RPC framework插图

Features

  • Transparent, high-performance remote service invocation
  • Supports multiple service routing and load balancing policies
  • Support for integration of multiple registries
  • Supports multiple protocols, including Bolt, Rest, Dubbo, etc.
  • Support synchronization, one-way, callback, generalization and other call methods
  • Support cluster fault tolerance, service preheating, automatic fault isolation
  • Powerful expansion function, you can expand each functional component on demand

Start using SOFABoot

Note that the code example requires a local installation of the zookeeper environment. If not, you need to delete it
Com. Alipay. Sofa. RPC. Registry. The address configuration application. The properties to use local file as a registry.

< Create project

  • Prepare the environment: SOFABoot requires JDK7 or JDK8 and needs to be compiled with Apache Maven 2.2.5 or later.
  • Building SOFABoot projects: SOFABoot is based on Spring Boot. So you can use Spring Boot’s project generation tool to generate a standard Spring Boot project.
  • Add SOFABoot dependency: The generated standard Spring Boot project uses the Spring parent dependency directly and needs to be changed to the parent dependency provided by SOFABoot. The parent dependency provides and manages the various starters provided by SOFABoot.
<parent> 
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId> 
    <version>${spring.boot.version}</version> 
    <relativePath/> 
</parent> 

Replace the above with the following:

<parent> 
    <groupId>com.alipay.sofa</groupId> 
    <artifactId>sofaboot-dependencies</artifactId> 
    <version>3.0.0</version> 
</parent> 

1.Configure application.properties: application.properties is the configuration file in the SOFABoot project. You need to configure the application name here.

spring.application.name=AppName 

2. Import RPC initiator:

<dependency>
     <groupId>com.alipay.sofa</groupId>
     <artifactId>rpc-sofa-boot-starter</artifactId>
</dependency> 

3. Declare SOFABoot’s xsd file:

In the XML configuration file to use, configure the declaration for the header xsd file as follows. This enables development using XML elements defined by SOFABoot.

<?xml version="1.0" encoding="UTF-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
       xmlns:xsi="http://www .w3.org/2001/XMLSchema-instance" 
       xmlns:sofa="http://sofastack.io/schema/sofaboot" 
       xmlns:context="http://www.springframework.org/schema/context" 
       xsi:schemaLocation ="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd 
            http://sofastack.io/schema/sofaboot http://sofastack .io/schema/sofaboot.xsd"

Define the service interface and implement

public interface HelloSyncService {

    String saySync(String string); 
} 
public class HelloSyncServiceImpl implements HelloSyncService { 

    @Override 
    public String saySync(String string) { 
        return string; 
    } 
} 

Publishing a service on a server

Configure the following in the xml file. When the Spring context is refreshed, SOFABoot registers the service implementation on the server side, communicates with the client through the Bolt protocol, and publishes metadata such as addresses to the registry (using local files as the registry by default).

<bean id="helloSyncServiceImpl" class="com.alipay.sofa.rpc.samples.invoke.HelloSyncServiceImpl"/> 
<sofa:service ref="helloSyncServiceImpl" interface="com.alipay.sofa.rpc. samples.invoke.HelloSyncService"
    <sofa:binding.bolt/> 
</sofa:service> 

Customer Reference Service

Configure the following in the xml file. When the Spring context is refreshed, SOFABoot generates an RPC proxy bean personReferenceBolt,. This allows you to use the bean directly in your code to make remote calls.

<sofa:reference id="helloSyncServiceReference" interface="com.alipay.sofa.rpc.samples.invoke.HelloSyncService"> 
    <sofa:binding.bolt/> 
</sofa:reference> 

Run item

The SpringBoot boot class code is as follows. The above xml file is loaded here using ImportResource.

@ImportResource({ "classpath*:rpc-sofa-boot-starter-samples.xml" }) 
@org.springframework.boot.autoconfigure.SpringBootApplication
public class SofaBootRpcSamplesApplication {
    public static void main(String[] args) {
          SpringApplication springApplication = new SpringApplication(SofaBootRpcSamplesApplication.class); 
          ApplicationContext applicationContext = springApplication.run(args);           

          HelloSyncService helloSyncServiceReference = (HelloSyncService) applicationContext 
            .getBean("helloSyncServiceReference"); 

          System.out.println(helloSyncServiceReference.saySync("sync") ); 
    } 
} 

Road map

SOFARPC is a high-performance Java RPC framework插图1

资源下载此资源为免费资源立即下载
Telegram:@John_Software

Disclaimer: This article is published by a third party and represents the views of the author only and has nothing to do with this website. This site does not make any guarantee or commitment to the authenticity, completeness and timeliness of this article and all or part of its content, please readers for reference only, and please verify the relevant content. The publication or republication of articles by this website for the purpose of conveying more information does not mean that it endorses its views or confirms its description, nor does it mean that this website is responsible for its authenticity.

Ictcoder Free Source Code SOFARPC is a high-performance Java RPC framework https://ictcoder.com/sofarpc-is-a-high-performance-java-rpc-framework/

Share free open-source source code

Q&A
  • 1. Automatic: After making an online payment, click the (Download) link to download the source code; 2. Manual: Contact the seller or the official to check if the template is consistent. Then, place an order and make payment online. The seller ships the goods, and both parties inspect and confirm that there are no issues. ICTcoder will then settle the payment for the seller. Note: Please ensure to place your order and make payment through ICTcoder. If you do not place your order and make payment through ICTcoder, and the seller sends fake source code or encounters any issues, ICTcoder will not assist in resolving them, nor can we guarantee your funds!
View details
  • 1. Default transaction cycle for source code: The seller manually ships the goods within 1-3 days. The amount paid by the user will be held in escrow by ICTcoder until 7 days after the transaction is completed and both parties confirm that there are no issues. ICTcoder will then settle with the seller. In case of any disputes, ICTcoder will have staff to assist in handling until the dispute is resolved or a refund is made! If the buyer places an order and makes payment not through ICTcoder, any issues and disputes have nothing to do with ICTcoder, and ICTcoder will not be responsible for any liabilities!
View details
  • 1. ICTcoder will permanently archive the transaction process between both parties and snapshots of the traded goods to ensure the authenticity, validity, and security of the transaction! 2. ICTcoder cannot guarantee services such as "permanent package updates" and "permanent technical support" after the merchant's commitment. Buyers are advised to identify these services on their own. If necessary, they can contact ICTcoder for assistance; 3. When both website demonstration and image demonstration exist in the source code, and the text descriptions of the website and images are inconsistent, the text description of the image shall prevail as the basis for dispute resolution (excluding special statements or agreements); 4. If there is no statement such as "no legal basis for refund" or similar content, any indication on the product that "once sold, no refunds will be supported" or other similar declarations shall be deemed invalid; 5. Before the buyer places an order and makes payment, the transaction details agreed upon by both parties via WhatsApp or email can also serve as the basis for dispute resolution (in case of any inconsistency between the agreement and the description of the conflict, the agreement shall prevail); 6. Since chat records and email records can serve as the basis for dispute resolution, both parties should only communicate with each other through the contact information left on the system when contacting each other, in order to prevent the other party from denying their own commitments. 7. Although the probability of disputes is low, it is essential to retain important information such as chat records, text messages, and email records, in case a dispute arises, so that ICTcoder can intervene quickly.
View details
  • 1. As a third-party intermediary platform, ICTcoder solely protects transaction security and the rights and interests of both buyers and sellers based on the transaction contract (product description, agreed content before the transaction); 2. For online trading projects not on the ICTcoder platform, any consequences are unrelated to this platform; regardless of the reason why the seller requests an offline transaction, please contact the administrator to report.
View details

Related Source code

ICTcoder Customer Service

24-hour online professional services