Examples of SqlMapClientTemplate


Examples of org.springframework.orm.ibatis.SqlMapClientTemplate

public class BaseSqlMapClient {
  private SqlMapClientTemplate sqlMapClientTemplate;
 
  public void setSqlMapClient(SqlMapClient sqlMapClient) {
    this.sqlMapClientTemplate = new SqlMapClientTemplate(sqlMapClient);
  }
View Full Code Here

Examples of org.springframework.orm.ibatis.SqlMapClientTemplate

    @Test
    public void testQueryForListWithCustomMerger() {
        batchInsertOffersAsFixture();

        SqlMapClientTemplate st = (SqlMapClientTemplate) getApplicationContext().getBean(
                "sqlMapClientTemplateWithMerger");
        @SuppressWarnings("unchecked")
        List lst = st
                .queryForList("com.alibaba.cobar.client.entities.Offer.findAllWithOrderByOnSubject");
        assertTrue(CollectionUtils.isNotEmpty(lst));
        assertEquals(5, lst.size());

        verifyOffersOrderBySubject(lst);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.