Package com.fengjing.framework.mybatis.model

Examples of com.fengjing.framework.mybatis.model.Product


  @Resource(name="myBatisProductService")
  ProductService productService;
 
  @Test
  public void save(){
    Product product=new Product();
    product.setName("SONY");
    product.setPrice(79.0f);
    product.setDescription("SONY");
    product.setCategoryid("1");
    productService.save(product);
  }
View Full Code Here


  }
 
 
  @Test
  public void getProduct(){
    Product product=productService.getProduct("3");
    System.out.println(product.getName()+"\t"+product.getDescription());
  }
View Full Code Here

TOP

Related Classes of com.fengjing.framework.mybatis.model.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.