June 2014
Beginner to intermediate
304 pages
7h 25m
English
We will start with implementing our order processing backend service first. We proceed as follows:
Address under the com.packt.webstore.domain package in the source folder src/main/java and add the following code into it. Note that I have skipped the getters, setters, equals, and hashcode methods in the following snippet. Please do add those when you create this class:package com.packt.webstore.domain; import java.io.Serializable; public class Address implements Serializable{ private static final long serialVersionUID = -530086768384258062L; private String doorNo; private String streetName; private String areaName; private String state; private String country; private ...