一个测试用例

javabean转json

    @Test
    @Rollback(false)
    public void policyQueryTest() throws Exception {
        // 查询数据
        String id = "402892816136971701613699f23f0002";
        DmPolicy tem = policyService.queryPolicy(id);
        System.out.println("1111111111111111111111111111111111111111111111111111");
        ObjectMapper mapper = new ObjectMapper();
//javabean转json String jsonString
= mapper.writeValueAsString(tem); System.out.println(jsonString); System.out.println("1111111111111111111111111111111111111111111111111111"); } }

 json转 javabean

DmPolicy zz = mapper.readValue(jsonString, DmPolicy.class);

 

相关文章:

  • 2022-01-21
  • 2018-08-14
  • 2021-09-02
  • 2022-12-23
  • 2022-12-23
  • 2021-10-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-15
  • 2022-02-16
  • 2022-12-23
  • 2022-12-23
  • 2021-10-19
相关资源
相似解决方案