Package stripbandunk.tutorial.jtreehibernate.entity

Examples of stripbandunk.tutorial.jtreehibernate.entity.Category


    @Override
    public Category save(String name) {
        session.beginTransaction();

        Category category = new Category();
        category.setName(name);
        session.save(category);

        session.getTransaction().commit();

        return category;
View Full Code Here

TOP

Related Classes of stripbandunk.tutorial.jtreehibernate.entity.Category

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.