Package com.sishuok.es.showcase.product.entity

Examples of com.sishuok.es.showcase.product.entity.Product


    @RequestMapping(value = "/category-{categoryId}/create", method = RequestMethod.GET)
    public String showCreateForm(Model model, @PathVariable("categoryId") Category category) {
        String result = super.showCreateForm(model);

        if (category != null) {
            Product m = (Product) model.asMap().get("m");
            m.setCategory(category);
        }
        return result;
    }
View Full Code Here

TOP

Related Classes of com.sishuok.es.showcase.product.entity.Product

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.