8.10.29 下午 第67天上課
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="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.xsd">
1.配置資料來源 druid
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
<property name="url" value="jdbc:mysql://localhost:3306/crud"></property>
<property name="username" value="root"></property>
<property name="password" value="root"></property>
</bean>
2.配置JdbcTemplate,並注入資料來源
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource"></property>
</bean>
3.配置dao,並注入JdbcTemplate
<bean id="userinfoDao" class="cn.zzsxt.crud.dao.impl.UserinfoDaoImpl">
<property name="jdbcTemplate" ref="jdbcTemplate"></property>
</bean>
4.配置service,並注入dao
<bean id="userinfoService" class="cn.zzsxt.crud.service.impl.UserinfoServiceImpl">
<property name="userinfoDao" ref="userinfoDao"></property>
</bean>
</beans>
====================================================================================================
1.IOC的綜合例項 (斧子問題)---->面試題
2.Spring容器中Bean宣告週期 scope="singleton|prototype"
a.單例,當容器初始化時 ApplicationContext ac = new ClassPathXmlApplicationContext();建立物件,並且針對所有的使用者請求只建立一個物件
b.原型,初始化容器時並不會建立物件,當呼叫getBean方法時針對每一次使用者的請求建立一個新的物件
3.使用靜態工程方法和例項工程方法建立物件
<bean id="" class="" factory-method=""/>
4.自動裝配(autowire)
<bean id="" class="" autowire="byName|byType|constructor">
5.使用spring中的JdbcTemplate實現CRUD操作
JdbcTemplate
查詢:query()/queryForObject(..)/queryForList(..)---->RowMapper的例項
增/刪/改:update()
a.配置資料來源(DruidDataSource)
b.配置JdbcTemplate,並注入資料來源(dataSource)
c.配置DAO,並注入JdbcTemplate
d.配置Service,並注入DAO