当前位置:Gxlcms > 数据库问题 > jdbctemplate

jdbctemplate

时间:2021-07-01 10:21:17 帮助过:9人阅读

  1. public class Book {
  2. private Integer bookid;
  3. private String bookname;
  4. private Integer bookprice;
  5. public Integer getBookid() {
  6. return bookid;
  7. }
  8. public void setBookid(Integer bookid) {
  9. this.bookid = bookid;
  10. }
  11. public String getBookname() {
  12. return bookname;
  13. }
  14. public void setBookname(String bookname) {
  15. this.bookname = bookname;
  16. }
  17. public Integer getBookprice() {
  18. return bookprice;
  19. }
  20. public void setBookprice(Integer bookprice) {
  21. this.bookprice = bookprice;
  22. }
  23. }
技术分享

2.2 dao层

2.2.1接口

  1. public interface IBookDAO {
  2. //查询素有图书
  3. public List<Book> findAll();
  4. }

2.2.2.BookDAOimpl 类

技术分享
  1. public class BookDAOimpl extends JdbcDaoSupport implements IBookDAO{
  2. public List<Book> findAll() {
  3. String sql="select * from book";
  4. List<Book> list=this.getJdbcTemplate().query(sql, new RowMapper<Book>() {
  5. public Book mapRow(ResultSet rs, int i) throws SQLException {
  6. Book book=new Book();
  7. book.setBookid(rs.getInt("Id"));
  8. book.setBookname(rs.getString("Name"));
  9. book.setBookprice(rs.getInt("Price"));
  10. return book;
  11. }
  12. });
  13. return list;
  14. }
  15. }
技术分享

2.3service层

2.3.1IBookService 接口

  1. public interface IBookService {
  2. //查询素有图书
  3. public List<Book> findAll();
  4. }

2.3.2 BookServiceImpl 

技术分享
  1. public class BookServiceImpl implements IBookService {
  2. //植入dao
  3. private IBookDAO dao;
  4. public List<Book> findAll() {
  5. return dao.findAll();
  6. }
  7. public IBookDAO getDao() {
  8. return dao;
  9. }
  10. public void setDao(IBookDAO dao) {
  11. this.dao = dao;
  12. }
  13. }
技术分享

3.jdbc.properties

  1. jdbc.driverClassName=com.mysql.jdbc.Driver
  2. jdbc.url=jdbc:mysql:///****
  3. jdbc.user=root
  4. jdbc.password=root

4.xml文件

技术分享
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:aop="http://www.springframework.org/schema/aop"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:p="http://www.springframework.org/schema/p"
  6. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  7. xsi:schemaLocation="
  8. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  9. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
  10. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
  11. ">
  12. <!--00.识别jdbc.properties文件-->
  13. <context:property-placeholder location="jdbc.properties"></context:property-placeholder>
  14. <!--01.建立数据源 ${} Spring 内置的一个数据源 DriverManager-->
  15. <!-- <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
  16. <property name="driverClassName" value="${jdbc.driverClassName}"></property>
  17. <property name="url" value="${jdbc.url}"></property>
  18. <property name="username" value="${jdbc.user}"></property>
  19. <property name="password" value="${jdbc.password}"></property>
  20. </bean>-->
  21. <!--dbcp-->
  22. <!--<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
  23. <property name="driverClassName" value="${jdbc.driverClassName}"></property>
  24. <property name="url" value="${jdbc.url}"></property>
  25. <property name="username" value="${jdbc.user}"></property>
  26. <property name="password" value="${jdbc.password}"></property>
  27. </bean>-->
  28. <!--c3p0-->
  29. <!--<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
  30. <property name="driverClass" value="${jdbc.driverClassName}"></property>
  31. <property name="jdbcUrl" value="${jdbc.url}"></property>
  32. <property name="user" value="${jdbc.user}"></property>
  33. <property name="password" value="${jdbc.password}"></property>
  34. </bean>-->
  35. <!--druid-->
  36. <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
  37. <property name="driverClassName" value="${jdbc.driverClassName}"></property>
  38. <property name="url" value="${jdbc.url}"></property>
  39. <property name="username" value="${jdbc.user}"></property>
  40. <property name="password" value="${jdbc.password}"></property>
  41. </bean>
  42. <!--02.jdbcTemplate 配置-->
  43. <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
  44. <property name="dataSource" ref="dataSource"></property>
  45. </bean>
  46. <!--03.dao配置-->
  47. <bean id="bookDao" class="cn.bdqn.spring19.dao.impl.BookDAOimpl">
  48. <property name="jdbcTemplate" ref="jdbcTemplate"></property>
  49. </bean>
  50. <!--04.service bookService-->
  51. <bean id="bookService" class="cn.bdqn.spring19.service.impl.BookServiceImpl">
  52. <property name="dao" ref="bookDao"></property>
  53. </bean>
  54. </beans>
技术分享

5.测试类

技术分享
  1. // jdbctemplate
  2. @Test
  3. public void test21(){
  4. ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContextspring17.xml");
  5. IBookService service = (IBookService) ctx.getBean("bookService");
  6. List<Book> list = service.findAll();
  7. for (Book item:list) {
  8. System.out.println(item.getBookname());
  9. }
  10. }
技术分享

jdbctemplate

标签:value   get   manager   ram   source   apach   2-2   word   建立   

人气教程排行