// Create a new connUtil to make sure we'll see the changes there...
JuConnUtil connUtil2 = JuConnUtils.build()
.profile(JuUtils.getJuPropertyChain().get("ju-dbutil-test.profile", true))
.create();
connUtil2.doWork(new DbWork() {
@Override
public void execute(Connection conn) {
Long id2 = JuConnUtils.asJdbcTemplate(conn).queryForLong("select id from juConnUtilTestTable where id=1");
Assert.assertEquals(new Long(1), id2);