您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“SSM框架怎么配置ApplicationContext.xml文件”,內容詳細,步驟清晰,細節處理妥當,希望這篇“SSM框架怎么配置ApplicationContext.xml文件”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
ApplicationContext.xml 文件
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi ="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc ="http://www .springframework.org/schema/mvc" xmlns:context ="http://www.springframework.org/schema/context" xmlns:aop ="http://www.springframework.org/schema/aop" xmlns:tx ="http://www.springframework.org/schema/tx" xsi:schemaLocation ="http://www.springframework.org/schema/beans 網址:www.springframework.org/schema/beans/spring-beans-4.3.xsd http:www.springframework.org/schema/mvc http:www.springframework.org/schema/mvc/spring-mvc-4.3.xsd http:www.springframework.org/schema/context http:www.springframework.org/schema/context/spring-context-4.3.xsd http:www.springframework.org/schema/aop http:www.springframework.org/schema/aop/spring-aop-4.3.xsd http:www.springframework.org/schema/tx http:www.springframework.org/schema/tx/spring-tx-4.3.xsd"> <!--讀取 db.properties--> <context:property-placeholder location="classpath:db.properties"/> <!--配置數據源--> <bean id="dataSource"類="org.apache.commons.dbcp2.BasicDataSource"> <!--數據庫驅動器--> <property name="driverClassName" value="${jdbc.driver}"/> <!--連接數據庫的URL--> <property name="url" value="${jdbc.url}"/> <!--連接數據庫的用戶名--> <property name="username" value="${jdbc.username}"/> <!--連接數據庫的密碼--> <property name="password" value="${jdbc.password}"/> <!--最大連接數--> <property name="maxTotal" value="${jdbc.maxTotal}"/> <!--最大空閑數--> <property name="maxIdle" value="${jdbc.maxIdle}"/> <!--初始連接號--> <property name="initialSize" value="${jdbc.initialSize}"/> </豆> <!-- 事務管理器,依賴于數據源 --> <bean id="transactionManager"類="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"/> </豆> <!--注意事項--> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:屬性> <!--通信行為--> <tx:method name="save*" 傳播="REQUIRED"/> <tx:method name="插入*" 傳播="REQUIRED"/> <tx:method name="add*" 傳播="REQUIRED"/> <tx:method name="create*" 傳播="REQUIRED"/> <tx:method name="delete*" 傳播="REQUIRED"/> <tx:method name="update*" 傳播="REQUIRED"/> <tx:method name="find*" 傳播="SUPPORTS" 只讀="true"/> <tx:method name="select*" 傳播="SUPPORTS" 只讀="true"/> <tx:method name="get*" 傳播="SUPPORTS" 只讀="true"/> </tx:屬性> </tx: 建議> <!--切面條--> <aop:配置> <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.ma.core.service.*.*(..))"/> </aop:config> <!--配置MyBatis工廠SqlSessionFactory--> <bean id="sqlSessionFactory" class ="org.mybatis.spring.SqlSessionFactoryBean"> <!--注入數據源--> <property name="dataSource" ref="dataSource"/> <!--指定mapper文件的位置--> <property name="mapperLocations" value="classpath:mybatis/sqlmap/*.xml"/> <!--指定MyBatis的核心配置文件--> <property name="configLocation" value="classpath:mybatis-config.xml"/> </豆> <!-- 接口開發,掃描com.itheima.core.dao包,可以掃描到這個包里寫的接口 --> <bean類="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="com.ma.core.dao"/> </豆> <!-- 配置掃描@Service注解--> <context:component-scan base- package ="com.ma.core.service"/></beans>
讀到這里,這篇“SSM框架怎么配置ApplicationContext.xml文件”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。