Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class StaticUtils {
- public enum JsonMapperEnum {
- INSTANCE;
- private final JsonMapper jsonMapper = new JsonMapper();
- public JsonMapper getJsonMapperInstance() {
- return jsonMapper;
- }
- }
- }
- At the another side:
- StaticUtils.JsonMapperEnum.INSTANCE.getJsonMapperInstance().readTree(result);
Advertisement
Add Comment
Please, Sign In to add comment