Package com.fengjing.framework.springmvc.model

Examples of com.fengjing.framework.springmvc.model.Contacts


   * @return
   */
  @RequestMapping(value="/xml",produces=MediaType.APPLICATION_XML_VALUE)
  public @ResponseBody Contacts getContactsInXML(){
    List<Contact> contact = contactService.listAll();
    Contacts contacts=new Contacts();
    contacts.setContacts(contact);
    return contacts;
  }
View Full Code Here


 
 
  @RequestMapping(value="/json",produces=MediaType.APPLICATION_JSON_VALUE)
  public @ResponseBody Contacts getContactsInJson(){
    List<Contact> contact = contactService.listAll();
    Contacts contacts=new Contacts();
    contacts.setContacts(contact);
    return contacts;
  }
View Full Code Here

TOP

Related Classes of com.fengjing.framework.springmvc.model.Contacts

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.