1. 程式人生 > >Spring classPath:用法

Spring classPath:用法

參考文章地址:

http://hi.baidu.com/huahua035/item/ac8a27a994b55bad29ce9d39

http://blog.csdn.net/lushuaiyin/article/details/6880640

http://jeiofw.blog.51cto.com/3319919/934413

classpath就是代表  /WEB-INF /classes/  這個路徑(如果不理解該路徑,就把一個web工程釋出為war包,然後用winrar檢視其包內路徑就理解啦)

常用的場景:

在SSH架構中,配置Spring的上下文環境:

<!-- Spring Configures -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            classpath:applicationContext.xml
        </param-value>
    </context-param>

裡面的

classpath:applicationContext.xml  

也可以使用  /WEB-INF /classes/ applicationContext.xml  代替

注意:

classpath 和 classpath* 區別:

classpath:只會到你的class路徑中查詢找檔案;
classpath*:不僅包含class路徑,還包括jar檔案中(class路徑)進行查詢 ---- 夠深入的吧