Spring+SpringMvc+Mybatis結合
Mybatis與web
1、在我們之前學習mybatis中,我們是先根據實體類後,建立一個mapper包(它想我們之前dao包下的內容)在包中建一個AccountMapper介面,然後還需要在resources包下建立一個路徑和AccountMapper介面一樣的包下寫一個AccountMapper.xml,在xml中寫對資料的操作。
AccountMapper.java的介面
public interface AccountMapper {
void save(Account account);
List<Account> findAll();
}
AccountMapper.xml檔案
<mapper namespace="com.itheima.mapper.AccountMapper">
<insert id="save" parameterType="account">
insert into account values(#{id},#{name},#{money})
</insert>
<select id="findAll" resultType="account">
select * from account
</select>
</mapper>
其中我們可以看到介面中定義的方法需要在xml中進行實現,但是我們要注意的是我們在介面中的方法名需要和xml中id名稱要一致,這樣才能使我們寫的操作資料庫在介面中的方法實現
2、而建好我們並不能成功的實現對資料庫操作,我們還需要在resources資源包下建立一個使用mybatis的資原始檔sqlMapConfig.xml中去進行配置
<!--載入properties檔案-->
<properties resource="jdbc.properties"></properties>
<!--定義別名-->
<typeAliases>
<!--<typeAlias type="com.itheima.domain.Account" alias="account"></typeAlias>-->
<package name="com.itheima.domain"></package>
</typeAliases>
<!--環境-->
<environments default="developement">
<environment id="developement">
<transactionManager type="JDBC"></transactionManager>
<dataSource type="POOLED">
<property name="driver" value="${jdbc.driver}"></property>
<property name="url" value="${jdbc.url}"></property>
<property name="username" value="${jdbc.username}"></property>
<property name="password" value="${jdbc.password}"></property>
</dataSource>
</environment>
</environments>
<!--載入對映-->
<mappers>
<!--<mapper resource="com/itheima/mapper/AccountMapper.xml"></mapper>-->
<package name="com.itheima.mapper"></package>
</mappers>
3、再service層使用進行業務邏輯操作就能可以了
Mybatis和SpringMvc的結合
在我們進行使用SpringMvc中我們就已經潛移默化的把spring和springMvc進行結合了,而在我們需要使用Mybatis時,還需要把他們結合起來。
而在我們進行兩者的整合時步驟和上面還是相似的,但是mybatis的資原始檔sqlMapConfig.xml中在我們spring核心配置檔案有重複的可以去進行整合,整合後只需要在裡面定義一個別名
<!--定義別名-->
<typeAliases>
<!--<typeAlias type="com.itheima.domain.Account" alias="account"></typeAlias>-->
<package name="com.itheima.domain"></package>
</typeAliases>
而我們的spring-mvc.xml配置檔案是不用變化的。
<!-- spring-mvc.xml中的配置 -->
<!--1.元件掃描 主要掃描controller-->
<context:component-scan base-package="com.itheima.controller"/>
<!--2.配置mvc註解驅動-->
<mvc:annotation-driven/>
<!--3.內部資源檢視解析器-->
<bean id="resourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/pages/"/>
<property name="suffix" value=".jsp"/>
</bean>
<!--4.開發靜態資源訪問許可權-->
<mvc:default-servlet-handler/>
而在我們的spring核心配置檔案中需要在去載入配置我們的mybatis資源
<!--元件掃描 掃描service和mapper-->
<context:component-scan base-package="com.itheima">
<!--排除controller的掃描-->
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
<!--載入propeties檔案-->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!--配置資料來源資訊-->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="${jdbc.driver}"/>
<property name="jdbcUrl" value="${jdbc.url}"/>
<property name="user" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>
<!--配置sessionFactory-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<!--載入mybatis核心檔案-->
<property name="configLocation" value="classpath:sqlMapConfig-spring.xml"/>
</bean>
<!--掃描mapper所在的包 為mapper建立實現類-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.itheima.mapper"/>
</bean>
<!--宣告式事務控制-->
<!--平臺事務管理器-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!--配置事務增強-->
<tx:advice id="txAdvice">
<tx:attributes>
<tx:method name="*"/>
</tx:attributes>
</tx:advice>
<!--事務的aop織入-->
<aop:config>
<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.itheima.service.impl.*.*(..))"></aop:advisor>
</aop:config>
而在整合後,我們service層就無需進行繁瑣的操作了下面的步驟將會被配置檔案的配置取代
InputStream resourceAsStream = Resources.getResourceAsStream("sqlMapConfig.xml");
SqlSessionFactory build = new SqlSessionFactoryBuilder().build(resourceAsStream);
在配置檔案配置:
<!--配置sessionFactory-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<!--載入mybatis核心檔案-->
<property name="configLocation" value="classpath:sqlMapConfig-spring.xml"/>
</bean>
service中對事務處理:
sqlSession.commit();
sqlSession.close();
在配置檔案進行配置:
<!--宣告式事務控制-->
<!--平臺事務管理器-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!--配置事務增強-->
<tx:advice id="txAdvice">
<tx:attributes>
<tx:method name="*"/>
</tx:attributes>
</tx:advice>
<!--事務的aop織入-->
<aop:config>
<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.itheima.service.impl.*.*(..))"></aop:advisor>
</aop:config>
而在結合後的service成
通過最後整合完成,我發現主要是在配置檔案進行配置,結合著註解,使我們開發逐步簡化,並且耦合程度也在逐漸降低。