我是否有可能在单个程序中使用Jdbctemplate
和HibernateTemplate
?
我使用private JdbcTemplate template;
int i= template.queryForObject(
"select count(*) from login where username=? and password=?", Integer.class, s1);
来存储和检索数据,但是当检查用户名和密码时,我无法检查它。
<if test="sortBy == 'col1' ">
...
</if>