欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JdbcTemplate(Spring 笔记010)

程序员文章站 2023-12-22 12:48:10
...

J d b c T e m p l a t e { S p r i n g 提 供 的 J D B C 工 具 类 , 类 似 D B U t i l s 依 赖 连 接 池 D a t a S o u r c e j a r : 4 + 1 + j d b c + t x + ∼ JdbcTemplate\left\{\begin{array}{l}Spring\mathrm{提供的}JDBC\mathrm{工具类},\mathrm{类似}DBUtils\\\mathrm{依赖连接池}DataSource\\jar:4+1+jdbc+tx+\sim\end{array}\right. JdbcTemplateSpringJDBCDBUtilsDataSourcejar:4+1+jdbc+tx+
1.新建表t_user(username VARCHAR(100), password VARCHAR(100), id VARCHAR(100));
2.类:public class User{
private Integer id;private String Username;private String password;和对应的get,set方法}

使用api的方法(了解)

public class TestApi{
private static void main(String[] args){
//创建连接池:dbcp 其中的new 和 set 在Spring中将用Ioc和DI实现
BsicDataSource dataSource =new BasicDataSource();
dataSource.setDriver(~);
dataSource.setUrl(~);
dataSource.setname(~);
dataSource.setpassword(~);
//创建模板
JdbcTemplate jdbcTemplate =new JdbcTemplate();
jdbcTemplate.setDataSource(dataSource );
//通过Api操作
jdbc.update(“sql”,“arg”);//下面用String Dao层实现
}
}


新类

public class UserDao{
private JdbcTemplate jdbcTemplate;和其set方法,留给Spring注入使用
public void update (U ser user){
string sql=“update t_user set username=?,password=? where id=?”;
Object[] args={user.getUsername(),user.getPassword(),user.getId()} ;
jdbcTemplate.update(sql,args);
}
}

测试类:

public void demo{
String xmlpath =“com.···.beans.xml”
ApplicationContext applicationContext= new ClassPathXmlApplicationContext(xmlpath);
UserDao userDao=(UserDao)applicationContext.getBean(“UserDaoId”);
userDao.update(user);
}

.xml(dbcp)

//对模板注入数据源
<bean id="userDaoId" class="~.UserDAO">
<property name="jdbcTemplate" ref="dataSourceId"></property>
</bean>
//数据源的配置 方法一
<bean id="dataSourceId" class="~.BasicDataSource">
<property name="driverClsssName" value="  "></property>
<property name="url" value="  "></property>
<property name="username" value="  "></property>
<property name="password" value="  "></property>
</bean>
//数据源的配置 方法二   .properties文件
jdbc.deiverClass=com.mysqljdbc.Driver
jdbc.jdbcUrl=
jdbc.user=root
jdbc.password=
然后
<context:property-placeholder location="classpath:src下的位置">
<property name="driverClsss" value=" ${jdbc.deiverClass} "></property>
<property name="jdbcUrl" value="${jdbc.jdbcUrl}  "></property>
<property name="user" value=" ${jdbc.user} "></property>
<property name="password" value=" ${jdbc.password} "></property>

注:如果使用C3P0的xml配置差不多

继承JdbcDaoSupport类(类中有final修饰的模板方法)

public class UserDao extends JdbcDaoSupport{
this/super.getJdbcTemplate.update(sql,args)
}


<bean id="userDaoId" class="~.UserDAO">
<property name="jdbcTemplate" ref="dataSourceId"></property>
</bean>

<bean id="dataSourceId" class="~.BasicDataSource">
<property name="driverClsssName" value="  "></property>
<property name="url" value="  "></property>
<property name="username" value="  "></property>
<property name="password" value="  "></property>
</bean>
改为
<bean id="userDaoId" class="~.UserDAO">
<property name="dataSource" ref="dataSourceId"></property>
</bean>

<bean id="dataSourceId" class="~.BasicDataSource">
<property name="driverClsssName" value="  "></property>
<property name="url" value="  "></property>
<property name="username" value="  "></property>
<property name="password" value="  "></property>
</bean>
相关标签: BS架构

上一篇:

下一篇: