日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

Spring SimpleJdbcTemplate查询示例

發布時間:2024/9/20 javascript 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Spring SimpleJdbcTemplate查询示例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
這里有幾個例子來說明如何使用SimpleJdbcTemplate?query()方法來查詢或從數據庫中提取數據。在?JdbcTemplate?query()?方法,需要手動轉換返回的結果轉換為一個目標對象類型,并傳遞一個對象數組作為參數。在SimpleJdbcTemplate類,它是更加人性化和簡單。 jdbctemplate VS simplejdbctemplate
請比較JdbcTemplate類的示例和SimpleJdbcTemplate類的示例。 1.查詢單行 這里有向你展示了如何查詢或從數據庫中提取單行的兩種方式,并將其轉換成一個模型類。

1.1 自定義RowMapper

在一般情況下,它總是建議來實現 RowMapper 接口來創建自定義的RowMapper,以滿足您的需求。 package com.yiibai.customer.model;import java.sql.ResultSet; import java.sql.SQLException;import org.springframework.jdbc.core.RowMapper;public class CustomerRowMapper implements RowMapper {public Object mapRow(ResultSet rs, int rowNum) throws SQLException {Customer customer = new Customer();customer.setCustId(rs.getInt("CUST_ID"));customer.setName(rs.getString("NAME"));customer.setAge(rs.getInt("AGE"));return customer;}} public Customer findByCustomerId(int custId){String sql = "SELECT * FROM CUSTOMER WHERE CUST_ID = ?";Customer customer = getSimpleJdbcTemplate().queryForObject(sql, new CustomerParameterizedRowMapper(), custId);return customer; }

1.2 BeanPropertyRowMapper

在SimpleJdbcTemplate類,需要使用“ParameterizedBeanPropertyRowMapper' 代替 'BeanPropertyRowMapper”。 public Customer findByCustomerId2(int custId){String sql = "SELECT * FROM CUSTOMER WHERE CUST_ID = ?";Customer customer = getSimpleJdbcTemplate().queryForObject(sql,ParameterizedBeanPropertyRowMapper.newInstance(Customer.class), custId);return customer; } 2,查詢多行 從數據庫查詢或提取多行記錄,并將其轉換成一個列表。

2.1 ParameterizedBeanPropertyRowMapper

public List<Customer> findAll(){String sql = "SELECT * FROM CUSTOMER";List<Customer> customers = getSimpleJdbcTemplate().query(sql, ParameterizedBeanPropertyRowMapper.newInstance(Customer.class));return customers; } 3.查詢單值 查詢或提取數據庫中的單個列的值。 3.1單列名 它顯示了如何查詢單個列名作為字符串。 public String findCustomerNameById(int custId){String sql = "SELECT NAME FROM CUSTOMER WHERE CUST_ID = ?";String name = getSimpleJdbcTemplate().queryForObject(sql, String.class, custId);return name;} 3.2、行總數 它展示了如何從數據庫中查詢行的總數。 public int findTotalCustomer(){String sql = "SELECT COUNT(*) FROM CUSTOMER";int total = getSimpleJdbcTemplate().queryForInt(sql);return total; }

運行它

package com.yiibai.common;import java.util.ArrayList; import java.util.List;import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import com.yiibai.customer.dao.CustomerDAO; import com.yiibai.customer.model.Customer;public class SimpleJdbcTemplateApp {public static void main( String[] args ){ApplicationContext context = new ClassPathXmlApplicationContext("Spring-Customer.xml");CustomerDAO customerSimpleDAO = (CustomerDAO) context.getBean("customerSimpleDAO");Customer customerA = customerSimpleDAO.findByCustomerId(1);System.out.println("Customer A : " + customerA);Customer customerB = customerSimpleDAO.findByCustomerId2(1);System.out.println("Customer B : " + customerB);List<Customer> customerAs = customerSimpleDAO.findAll();for(Customer cust: customerAs){System.out.println("Customer As : " + customerAs);}List<Customer> customerBs = customerSimpleDAO.findAll2();for(Customer cust: customerBs){System.out.println("Customer Bs : " + customerBs);}String customerName = customerSimpleDAO.findCustomerNameById(1);System.out.println("Customer Name : " + customerName);int total = customerSimpleDAO.findTotalCustomer();System.out.println("Total : " + total);} }

總結

SimpleJdbcTemplate 是不能代替?JdbcTemplate?的,它只是一個Java5的友好補充它。 下載代碼 –?http://pan.baidu.com/s/1eRisz6M

總結

以上是生活随笔為你收集整理的Spring SimpleJdbcTemplate查询示例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。