Example with Jdbcdaosupport

Source: Internet
Author: User

By extended the Jdbcdaosupport, set the DataSource and JdbcTemplate in your class are no longer required, you just need to Inject the correct datasource into Jdbccustomerdao. And you can get the JdbcTemplate by using a getjdbctemplate () method.

 Public class extends Implements customerdao{   //no need to set DataSourcehere public   void Insert (Customer customer) {    = ' INSERT into Customer ' +        ' (cust_id, NAME, age) VALUES (?,?,?) " ;     New object[] {customer.getcustid (),            customer.getname (), Customer.getage ()    });
<Beansxmlns= "Http://www.springframework.org/schema/beans"Xmlns:xsi= "Http://www.w3.org/2001/XMLSchema-instance"xsi:schemalocation= "Http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/ Spring-beans-2.5.xsd ">    <BeanID= "DataSource"class= "Org.springframework.jdbc.datasource.DriverManagerDataSource">        < Propertyname= "Driverclassname"value= "Com.mysql.jdbc.Driver" />        < Propertyname= "url"value= "Jdbc:mysql://localhost:3306/mkyongjava" />        < Propertyname= "username"value= "root" />        < Propertyname= "Password"value= "Password" />    </Bean></Beans>
<Beansxmlns= "Http://www.springframework.org/schema/beans"Xmlns:xsi= "Http://www.w3.org/2001/XMLSchema-instance"xsi:schemalocation= "Http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/ Spring-beans-2.5.xsd ">    <BeanID= "Customerdao"class= "Com.mkyong.customer.dao.impl.JdbcCustomerDAO">        < Propertyname= "DataSource"ref= "DataSource" />    </Bean></Beans>

Example with Jdbcdaosupport

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.