spring jdbctemplate操作數據庫

  <!-- Spring jdbcTemplate -->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate" abstract="false"  
        lazy-init="false" autowire="default" >  
        <property name="dataSource">  
            <ref bean="dataSource" />  
        </property>  
    </bean> 
    
@RunWith(SpringJUnit4Cla***unner.class)  
@ContextConfiguration(locations = { "classpath*:/resource/springmvc-dao.xml" })  
@TransactionConfiguration(defaultRollback = true)  
public class TestSpringJDBC {
    
    @Autowired
    private JdbcTemplate template;

    @Test
    public void TestDB() throws SQLException{
        System.err.println("template.getDataSource().getConnection()======="+template.getDataSource().getConnection());
    }
    
    @Test
    public void queryUsers(){
        String selSQL ="select  *  from usr_test " ;
        List<User> userlist= (List<User>) template.query(selSQL, new BeanPropertyRowMapper(User.class));  
        System.err.println("userlist.Size()=========="+userlist.size());
        for (int i = 0; i < userlist.size(); i++) {
            User user=(User)userlist.get(i);            
            System.err.println("第"+i+"名字是:"+user.getName());
        }
    }

}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章