All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.jaspercloud.react.test.api.ApiTest Maven / Gradle / Ivy

The newest version!
package io.jaspercloud.react.test.api;

import io.jaspercloud.react.RpcClient;
import io.jaspercloud.react.mono.AsyncMono;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;

@RpcClient("spring-demo-v1")
public interface ApiTest {

    @PostMapping("/test")
    AsyncMono test1(@RequestBody String data);

    @PostMapping("/test")
    AsyncMono> test2(@RequestBody String data);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy