001// ***************************************************************************************************************************
002// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
003// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
004// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance            *
005// * with the License.  You may obtain a copy of the License at                                                              *
006// *                                                                                                                         *
007// *  http://www.apache.org/licenses/LICENSE-2.0                                                                             *
008// *                                                                                                                         *
009// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an  *
010// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the        *
011// * specific language governing permissions and limitations under the License.                                              *
012// ***************************************************************************************************************************
013package org.apache.juneau.examples.core.json;
014
015import org.apache.juneau.examples.core.pojo.*;
016import org.apache.juneau.json.JsonParser;
017import org.apache.juneau.json.JsonSerializer;
018
019import java.util.ArrayList;
020import java.util.HashMap;
021import java.util.List;
022
023/**
024 * Sample class which shows the complex usage of JsonSerializer and JsonParser.
025 */
026public class JsonComplexExample {
027    /**
028     * Serializing PojoComplex bean into Json type
029     * and Deserialize back to PojoComplex instance type.
030     * @param args
031     * @throws Exception
032     */
033    public static void main(String[] args) throws Exception{
034        // Juneau provides static constants with the most commonly used configurations
035        // Get a reference to a serializer - converting POJO to flat format
036        /**
037         * Produces
038         * {"innerPojo":{"name":"name0","id":"1.0"},
039         * "values":{"setOne":[{"name":"name1","id":"1.1"},{"name":"name2","id":"1.1"}],
040         * "setTwo":[{"name":"name1","id":"1.2"},{"name":"name2","id":"1.2"}]},"id":"pojo"}
041         */
042        JsonSerializer jsonSerializer = JsonSerializer.DEFAULT;
043        // Get a reference to a parser - converts that flat format back into the POJO
044        JsonParser jsonParser = JsonParser.DEFAULT;
045
046        // Fill some data to a PojoComplex bean
047        HashMap<String, List<Pojo>> values = new HashMap<>();
048        ArrayList<Pojo> setOne = new ArrayList<>();
049        setOne.add(new Pojo("1.1", "name1"));
050        setOne.add(new Pojo("1.1", "name2"));
051        ArrayList<Pojo> setTwo = new ArrayList<>();
052        setTwo.add(new Pojo("1.2", "name1"));
053        setTwo.add(new Pojo("1.2", "name2"));
054        values.put("setOne", setOne);
055        values.put("setTwo", setTwo);
056        PojoComplex pojoc = new PojoComplex("pojo", new Pojo("1.0", "name0"), values);
057
058        String flat = jsonSerializer.serialize(pojoc);
059
060        // Print out the created POJO in JSON format.
061        System.out.println(flat);
062
063        PojoComplex parse = jsonParser.parse(flat, PojoComplex.class);
064
065        assert parse.getId().equals(pojoc.getId());
066        assert parse.getInnerPojo().getName().equals(pojoc.getInnerPojo().getName());
067        assert parse.getInnerPojo().getId().equals(pojoc.getInnerPojo().getId());
068
069        // The object above can be parsed thanks to the @BeanConstructor(properties = id,name) annotation on Pojo
070        // Using this approach, you can keep your POJOs immutable, and still serialize and deserialize them.
071    }
072}