Giter Club home page Giter Club logo

b-java-serialization-with-jackson-homework's Introduction

Java Serialization with Jackson Homework Answer

Homework Answer for Java Serialization with Jackson

Problem1

通过使用Jackson注解或者其他定制化手段

使得EventController中的两个接口,能够接收和返回如下格式的JSON:

{
    "id": "1",
    "name": "下载文件",
    "type": "D",
    "time": 1590050488701,
    "userId": "3",
    "userName": "张三"
}

其中时间是毫秒为单位的时间戳

Problem2

要求PersonController返回Person时:

  • 当age字段为null时,返回0
  • 当hobby字段为null时,忽略该字段

即当age和hobby不为null时,正常返回:

{
    "id": "1",
    "age": 18,
    "name": "张三",
    "hobby": "打篮球"
}

当age和hobby为null时,返回:

{
    "id": "1",
    "age": 0,
    "name": "张三"
}

b-java-serialization-with-jackson-homework's People

Contributors

fengyi-ling avatar zhaozhangtw avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.