com.github.sd4324530:fastrpc-client

Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/

License

License

Categories

Categories

CLI User Interface
GroupId

GroupId

com.github.sd4324530
ArtifactId

ArtifactId

fastrpc-client
Last Version

Last Version

0.1
Release Date

Release Date

Type

Type

jar
Description

Description

Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/

Download fastrpc-client

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.sd4324530/fastrpc-client/ -->
<dependency>
    <groupId>com.github.sd4324530</groupId>
    <artifactId>fastrpc-client</artifactId>
    <version>0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.sd4324530/fastrpc-client/
implementation 'com.github.sd4324530:fastrpc-client:0.1'
// https://jarcasting.com/artifacts/com.github.sd4324530/fastrpc-client/
implementation ("com.github.sd4324530:fastrpc-client:0.1")
'com.github.sd4324530:fastrpc-client:jar:0.1'
<dependency org="com.github.sd4324530" name="fastrpc-client" rev="0.1">
  <artifact name="fastrpc-client" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.sd4324530', module='fastrpc-client', version='0.1')
)
libraryDependencies += "com.github.sd4324530" % "fastrpc-client" % "0.1"
[com.github.sd4324530/fastrpc-client "0.1"]

Dependencies

compile (1)

Group / Artifact Type Version
com.github.sd4324530 : fastrpc-core jar 0.1

test (2)

Group / Artifact Type Version
junit : junit jar 4.12
ch.qos.logback : logback-classic jar 1.1.7

Project Modules

There are no modules declared in this project.

fastrpc

基于java AIO实现的RPC调用框架

RPC服务端初始化

public static void main(String[] args) throws Exception {
        new FastRpcServer()
                .threadSize(20)
                .register("test", new TestService())
                .bind(4567)
                .start();
    }
public class TestService implements ITestService {

    private final Logger log = LoggerFactory.getLogger(getClass());

    @Override
    public String say(String what) {
        String result = "say " + what;
        log.debug(result);
        return result;
    }

    @Override
    public String name() {
        log.debug("call name");
        return "call name";
    }

    @Override
    public void ok(String ok) {
        log.debug("call ok");
        log.debug("param:{}", ok);
    }

    @Override
    public void none() {
        log.debug("call none");
    }

    @Override
    public User doUser(User user) {
        log.debug("收到user:" + user);
        user.setAge(user.getAge() - 1);
        user.setName("hello " + user.getName());
        user.setSex(!user.isSex());
        return user;
    }
}

RPC客户端初始化

public static void main(String[] args) {
        try(IClient client = new FastRpcClient()) {
            client.connect(new InetSocketAddress("127.0.0.1", 4567));
            ITestService service = client.getService("test", ITestService.class);
            String say = service.say("Hello!");
            System.out.println(say);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
public interface ITestService {

    String say(String what);

    String name();

    void ok(String ok);

    void none();

    User doUser(User user);
}

Maven 项目引入

<dependency>
    <groupId>com.github.sd4324530</groupId>
    <artifactId>fastrpc-server</artifactId>
    <version>0.1</version>
</dependency>

<dependency>
    <groupId>com.github.sd4324530</groupId>
    <artifactId>fastrpc-client</artifactId>
    <version>0.1</version>
</dependency>

Versions

Version
0.1