Package test.entity

Examples of test.entity.Book


public class TestDefaultModel {

  @Test
  public void testPersist() {
   
    Book book = new Book();
    book.setBookName("賈'伯'斯'傳");
    book.setCreateDate(new Date());
    book.setPrice(new BigDecimal("100"));
   
    DefaultModel model = ApplicationContextHelper.getBean("defaultModel");
    model.save(book);
  }
View Full Code Here

TOP

Related Classes of test.entity.Book

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.