ps: 文件位置方式注意事項(xiàng):
- 與src同級(jí) 建立一個(gè)resource文件夾幻枉,把所有的配置文件放在里面
- 此時(shí) src 和resource包內(nèi)的文件都會(huì) 編譯編譯后存入后面指定的根路徑中去(如圖所示)
根路徑的設(shè)置(很重要):
涉及到指定路徑時(shí)候的書寫方式 如
<property name="configLocation" value="classpath:/myBatisConfig.xml" />
的指定颤专,必須得設(shè)置好旺遮,否則會(huì)找不到路徑報(bào)錯(cuò)
設(shè)置方式
一 摘完、在工程名上右鍵-->build path-->configure build path-->到下面這個(gè)圖
此時(shí)MyBatis_SpringMvc1/WebContent/WEB-INF/classes為該項(xiàng)目的根路徑classpath:,故前面例子
value="classpath:/myBatisConfig.xml" ```
實(shí)際上等價(jià)于 c
value="MyBatis_SpringMvc1/WebContent/WEB-INF/classesmyBatisConfig.xml"
#####舉例說明
+ 如圖所示
![222.png](http://upload-images.jianshu.io/upload_images/2039731-f03686e4c0da4722.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
+ 引用 圖中路徑下的 applicationContext.xml文件
value="classpath:/applicationContext.xml"
+ 引用 圖中路徑下的com 包內(nèi)的文件 aaa.xml文件
value="classpath:/com/aaa.xml"