Package org.springmodules.datamap.jdbc.sqlmap

Examples of org.springmodules.datamap.jdbc.sqlmap.ActiveMapper.save()


        DataMapper am = new ActiveMapper(Beer.class);
        am.setDataSource(jdbcTemplate.getDataSource());
        am.afterPropertiesSet();
        Beer b = new Beer();
        b.setBrand("Heineken");
        am.save(b);
        assertNotNull(b.getId());
        assertEquals("new beer is in db", 1, jdbcTemplate.queryForInt("select count(*) from beers where brand = 'Heineken'"));
    }

}
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.