packagecom.rshk.demo.services;importjava.util.List;importorg.springframework.stereotype.Service;importcom.rshk.demo.beans.Customer;@ServicepublicclassCustomerServiceImplimplementsCustomerService{publicvoidinsert(Customercustomer){// TODO Auto-generated method stub}publicCustomerget(Stringdocument){// TODO Auto-generated method stubreturnnull;}publicList<Customer>getCustomers(){// TODO Auto-generated method stubreturnnull;}}