play.libs.Json.mapper()方法的使用及代码示例

x33g5p2x  于2022-01-22 转载在 其他  
字(5.4k)|赞(0)|评价(0)|浏览(139)

本文整理了Java中play.libs.Json.mapper()方法的一些代码示例,展示了Json.mapper()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Json.mapper()方法的具体详情如下:
包路径:play.libs.Json
类名称:Json
方法名:mapper

Json.mapper介绍

[英]Gets the ObjectMapper used to serialize and deserialize objects to and from JSON values. This can be set to a custom implementation using Json.setObjectMapper.
[中]获取用于在JSON值之间序列化和反序列化对象的ObjectMapper。可以使用Json将其设置为自定义实现。setObjectMapper。

代码示例

代码示例来源:origin: com.typesafe.play/play_2.12

  1. /**
  2. * Creates a new empty ObjectNode.
  3. * @return new empty ObjectNode.
  4. */
  5. public static ObjectNode newObject() {
  6. return mapper().createObjectNode();
  7. }

代码示例来源:origin: com.typesafe.play/play

  1. /**
  2. * Creates a new empty ObjectNode.
  3. * @return new empty ObjectNode.
  4. */
  5. public static ObjectNode newObject() {
  6. return mapper().createObjectNode();
  7. }

代码示例来源:origin: com.typesafe.play/play_2.11

  1. /**
  2. * Creates a new empty ObjectNode.
  3. * @return new empty ObjectNode.
  4. */
  5. public static ObjectNode newObject() {
  6. return mapper().createObjectNode();
  7. }

代码示例来源:origin: com.typesafe.play/play_2.11

  1. /**
  2. * Parses a byte array representing a json, and return it as a JsonNode.
  3. * @param src the JSON input bytes.
  4. * @return the JSON node.
  5. */
  6. public static JsonNode parse(byte[] src) {
  7. try {
  8. return mapper().readTree(src);
  9. } catch(Throwable t) {
  10. throw new RuntimeException(t);
  11. }
  12. }

代码示例来源:origin: com.typesafe.play/play

  1. /**
  2. * Parses a InputStream representing a json, and return it as a JsonNode.
  3. * @param src the JSON input stream.
  4. * @return the JSON node.
  5. */
  6. public static JsonNode parse(java.io.InputStream src) {
  7. try {
  8. return mapper().readTree(src);
  9. } catch(Throwable t) {
  10. throw new RuntimeException(t);
  11. }
  12. }

代码示例来源:origin: com.typesafe.play/play_2.12

  1. /**
  2. * Converts an object to JsonNode.
  3. *
  4. * @param data Value to convert in Json.
  5. * @return the JSON node.
  6. */
  7. public static JsonNode toJson(final Object data) {
  8. try {
  9. return mapper().valueToTree(data);
  10. } catch(Exception e) {
  11. throw new RuntimeException(e);
  12. }
  13. }

代码示例来源:origin: com.typesafe.play/play_2.12

  1. /**
  2. * Parses a byte array representing a json, and return it as a JsonNode.
  3. * @param src the JSON input bytes.
  4. * @return the JSON node.
  5. */
  6. public static JsonNode parse(byte[] src) {
  7. try {
  8. return mapper().readTree(src);
  9. } catch(Throwable t) {
  10. throw new RuntimeException(t);
  11. }
  12. }

代码示例来源:origin: com.typesafe.play/play_2.11

  1. /**
  2. * Parses a String representing a json, and return it as a JsonNode.
  3. * @param src the JSON string.
  4. * @return the JSON node.
  5. */
  6. public static JsonNode parse(String src) {
  7. try {
  8. return mapper().readTree(src);
  9. } catch(Throwable t) {
  10. throw new RuntimeException(t);
  11. }
  12. }

代码示例来源:origin: com.typesafe.play/play

  1. /**
  2. * Parses a byte array representing a json, and return it as a JsonNode.
  3. * @param src the JSON input bytes.
  4. * @return the JSON node.
  5. */
  6. public static JsonNode parse(byte[] src) {
  7. try {
  8. return mapper().readTree(src);
  9. } catch(Throwable t) {
  10. throw new RuntimeException(t);
  11. }
  12. }

代码示例来源:origin: com.typesafe.play/play_2.12

  1. /**
  2. * Parses a String representing a json, and return it as a JsonNode.
  3. * @param src the JSON string.
  4. * @return the JSON node.
  5. */
  6. public static JsonNode parse(String src) {
  7. try {
  8. return mapper().readTree(src);
  9. } catch(Throwable t) {
  10. throw new RuntimeException(t);
  11. }
  12. }

代码示例来源:origin: com.typesafe.play/play

  1. /**
  2. * Converts an object to JsonNode.
  3. *
  4. * @param data Value to convert in Json.
  5. * @return the JSON node.
  6. */
  7. public static JsonNode toJson(final Object data) {
  8. try {
  9. return mapper().valueToTree(data);
  10. } catch(Exception e) {
  11. throw new RuntimeException(e);
  12. }
  13. }

代码示例来源:origin: com.typesafe.play/play_2.12

  1. /**
  2. * Parses a InputStream representing a json, and return it as a JsonNode.
  3. * @param src the JSON input stream.
  4. * @return the JSON node.
  5. */
  6. public static JsonNode parse(java.io.InputStream src) {
  7. try {
  8. return mapper().readTree(src);
  9. } catch(Throwable t) {
  10. throw new RuntimeException(t);
  11. }
  12. }

代码示例来源:origin: com.typesafe.play/play_2.11

  1. /**
  2. * Parses a InputStream representing a json, and return it as a JsonNode.
  3. * @param src the JSON input stream.
  4. * @return the JSON node.
  5. */
  6. public static JsonNode parse(java.io.InputStream src) {
  7. try {
  8. return mapper().readTree(src);
  9. } catch(Throwable t) {
  10. throw new RuntimeException(t);
  11. }
  12. }

代码示例来源:origin: com.typesafe.play/play

  1. /**
  2. * Parses a String representing a json, and return it as a JsonNode.
  3. * @param src the JSON string.
  4. * @return the JSON node.
  5. */
  6. public static JsonNode parse(String src) {
  7. try {
  8. return mapper().readTree(src);
  9. } catch(Throwable t) {
  10. throw new RuntimeException(t);
  11. }
  12. }

代码示例来源:origin: com.typesafe.play/play_2.11

  1. /**
  2. * Converts an object to JsonNode.
  3. *
  4. * @param data Value to convert in Json.
  5. * @return the JSON node.
  6. */
  7. public static JsonNode toJson(final Object data) {
  8. try {
  9. return mapper().valueToTree(data);
  10. } catch(Exception e) {
  11. throw new RuntimeException(e);
  12. }
  13. }

代码示例来源:origin: com.typesafe.play/play_2.12

  1. /**
  2. * Converts a JsonNode to a Java value
  3. *
  4. * @param <A> the type of the return value.
  5. * @param json Json value to convert.
  6. * @param clazz Expected Java value type.
  7. * @return the return value.
  8. */
  9. public static <A> A fromJson(JsonNode json, Class<A> clazz) {
  10. try {
  11. return mapper().treeToValue(json, clazz);
  12. } catch(Exception e) {
  13. throw new RuntimeException(e);
  14. }
  15. }

代码示例来源:origin: com.typesafe.play/play_2.11

  1. /**
  2. * Creates a new empty ArrayNode.
  3. * @return a new empty ArrayNode.
  4. */
  5. public static ArrayNode newArray() {
  6. return mapper().createArrayNode();
  7. }

代码示例来源:origin: com.typesafe.play/play_2.12

  1. /**
  2. * Creates a new empty ArrayNode.
  3. * @return a new empty ArrayNode.
  4. */
  5. public static ArrayNode newArray() {
  6. return mapper().createArrayNode();
  7. }

代码示例来源:origin: com.typesafe.play/play

  1. /**
  2. * Creates a new empty ArrayNode.
  3. * @return a new empty ArrayNode.
  4. */
  5. public static ArrayNode newArray() {
  6. return mapper().createArrayNode();
  7. }

代码示例来源:origin: com.typesafe.play/play_2.12

  1. private static String generateJson(Object o, boolean prettyPrint, boolean escapeNonASCII) {
  2. try {
  3. ObjectWriter writer = mapper().writer();
  4. if (prettyPrint) {
  5. writer = writer.with(SerializationFeature.INDENT_OUTPUT);
  6. }
  7. if (escapeNonASCII) {
  8. writer = writer.with(Feature.ESCAPE_NON_ASCII);
  9. }
  10. return writer.writeValueAsString(o);
  11. } catch (IOException e) {
  12. throw new RuntimeException(e);
  13. }
  14. }

相关文章