bytebuffer from string code example
Example 1: feignException byteBuffer to string
String s = StandardCharsets.UTF_8.decode(byteBuffer).toString();
Example 2: convert bytebuffer to string
String s = StandardCharsets.UTF_8.decode(byteBuffer).toString();