Package ru.drakeface.springmvchibernate.domain

Examples of ru.drakeface.springmvchibernate.domain.Contact


                .list();
    }

    @Override
    public void removeContact(Integer id) {
        Contact contact = (Contact) sessionFactory.getCurrentSession().load(
                Contact.class, id);
        if (null != contact) {
            sessionFactory.getCurrentSession().delete(contact);
        }
View Full Code Here


     ������ ����� ������� ��� �� ����� ������, ��� � �� ����� �����.
     ����������� ��������� ���������� HTTP-�����, ������� ����� �������������� (GET/POST), ���������� ��������� �������.
     */
    public String listContacts(Map<String, Object> map) {

        map.put("contact", new Contact());
        map.put("contactList", contactService.listContact());

        return "contact2";
    }
View Full Code Here

TOP

Related Classes of ru.drakeface.springmvchibernate.domain.Contact

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.