mybatis+spring的整合:java
導入的依賴:1.數據庫鏈接:mysql-connector-java 2.鏈接池:druid 3.servlet:javax.servlet-api 4.jstl:jstl(groupId:javax.servlet) 5.spring:spring-context 6.mybatis:mybatismysql
7.mybatis和spring整合:mybatis-spring(使用這個最好再加上spring-jdbc,這個內部有使用) 8.一些工具類的使用:spring-web 9.aop:aspectjweaver.git
applicationContext.xml的配置:github
1.<context:property-placeholder>有兩兩個屬性:location配置文件名,例如db.properties能夠引用其中的鍵,可是最好再加上local-override="true"防止引用鍵的名字重複,這個可能會讀取到電腦上同名的鍵值.web
2.DruidDataSource的<bean>,property的value就可使用${xx}引用上方db.properties的鍵值spring
3.掃描dao,<mybatis:scan base-package="com.dao">sql
4.service的實現類的<bean>數據庫
5.配置aop:主要用來給某些方法注入日誌,注入的類是指有日誌方法的類;某些方法的類是目標,是被注入的express
術語:apache
1.切面(aspect):日誌方法的類
2.切點(pointcut):它也稱爲切點表達式,目的是描述符合條件的方法
3.目標(target):被注入的類
4.鏈接點(join point):就是目標對象中的被注入日誌的方法
5.通知(advice):也就是日誌方法
6.aop代理(aopProxy):spring aop的實現就是靠代理來作到的,默認利用jdk代理和cglib代理
來實現
7.織入(weaving):是個動詞,表示把切面類的通知與目標對象鏈接點糅合在一塊兒的過程就叫織入
通知:有五種
before:前置通知,在鏈接點方法以前執行,並且不能控制鏈接點是否執行
after:後置通知也叫最終通知,意思就是鏈接點方法只要執行(無論是否有錯誤),它
都會獲得執行
after-return:返回通知,鏈接點正常執行(不報錯)時纔會執行這個通知.
throwing:異常通知:鏈接點方法拋出異常時纔會獲得執行.這個通知不能處理異常
只能獲得異常信息.異常通知若是想把目標方法拋出的異常傳遞給通知方法
只須要在異常通知的throwing屬性設置的值等於通知方法的參數名就能夠.
當異常通知方法沒有異常類型做爲參數時,潛臺詞就是目標方法拋出任何異常,通知都會獲得執行
當異常通知方法"有"異常類型做爲參數是,潛臺詞是隻有目標方法拋出的異常是參數指定類型
的異常或是子類型時,此通知方法纔會獲得執行
around通知:環繞通知,環繞通知是最強的通知類型,它能夠徹底取代上面的4種
也能夠進行異常的捕獲處理,也能夠組織目標方法執行
順序:before最前,after最後。可是如有多個before和after那麼按順序配置的順序,會出現before...after後before...after
通知方法參數中,第一個參數能夠爲JoinPoint類,直接使用這個對象,joinPont.class.getType()是目標類型。可是around方法中傳的是這個JoinPoint的實現類ProceedingJoinPoint
<context:property-placeholder local-override="true" location="classpath:db.properties"></context:property-placeholder> <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"> <property name="username" value="${jdbc.username}"/> <property name="password" value="${jdbc.password}"/> <property name="url" value="${jdbc.url}"/> </bean> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource"></property> <property name="configLocation" value="classpath:mybatis-config.xml"></property> <property name="mapperLocations" value="classpath*:*Mapper.xml"></property> <!--<property name="configuration" --> </bean> <mybatis:scan base-package="com.dao"></mybatis:scan> <bean id="deptService" class="com.service.impl.DeptServiceImpl" autowire="byType"></bean> <bean id="logTest" class="com.log.LogTest"></bean> <aop:config> <aop:aspect id="logTest" ref="logTest"> <aop:pointcut id="myPointcut" expression="execution(* com.service.impl.*.*(..))"/> <aop:before method="say" pointcut-ref="myPointcut"></aop:before> <!--<aop:after method="see" pointcut-ref="myPointcut"/>--> <aop:after-returning method="say" pointcut-ref="myPointcut"/> <!--<aop:after-throwing method="see" pointcut-ref="myPointcut"/>--> <!--<aop:around method="see" pointcut-ref="myPointcut"/>--> <aop:before method="say" pointcut-ref="myPointcut"></aop:before> </aop:aspect> </aop:config>
關於sqlSessionFactory的<bean>還有另一種配置,那就是不用mybaits的mybatis-config.xml文件,直接將該文件中的配置寫在這個<bean>中
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource"/> <!--指定mapper文件--> <property name="mapperLocations" value="classpath*:com/dao/**/*Mapper.xml"/> <!--mybatis-config文件解析以後mybatis是用Configuration類型來表明(入口對象)--> <property name="configuration"> <bean class="org.apache.ibatis.session.Configuration"> <!--配置顯示sql的日誌--> <property name="logImpl" value="org.apache.ibatis.logging.stdout.StdOutImpl"/> </bean> </property> <property name="plugins"> <list> <bean class="com.github.pagehelper.PageInterceptor"> <property name="properties"> <!-- <props> <prop key="supportMethodsArguments">true</prop> <prop key="reasonable">true</prop> </props> --> <value> supportMethodsArguments=true resonable=true </value> </property> </bean> </list> </property> </bean>
最後還有一個關鍵,若是這是這麼配置完applicationContext.xml以後會發現一件事,那就是怎麼用到它?
在java代碼中能夠經過spring-web依賴中有一個工具類WebApplicationContextUtils.getWebApplicationContext(...)方法獲取該xml文件,可是若是沒有額外配置從哪裏找這個xml文件,默認是在WEB-INF目錄下找,配置的代碼爲<context-param>,其餘的仍是使用這個依賴完成過濾器的功能
<context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:applicationContext.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <filter> <filter-name>filter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value> </init-param> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>filter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
關於applicationContext.xml文件可使用<import resource="classpath*:xxx.xml">來導入其餘配置文件,做用相似於複製黏貼,最終效果至關於只有一個文件。