zoukankan      html  css  js  c++  java
  • spring中classpath和classpath*的配置区别

    spring中classpath和classpath*的配置区别

     

    在使用spring时,经常会看到类似 classpth:、classpath*: 这样的前缀,不管是加载spring xml配置文件还是其配置文件中加载资源文件都会看到这两种前缀配置,其实这两种前缀是有区别的,下面将举例详细解释。

    spring配置文件:applicationContext.xml 中两种不同的properties文件加载配置:

    第一种:classpath:

    <context:property-placeholder ignore-unresolvable="true"
        location="classpath:/application.properties" />

    这种配置下运行测试代码,日志信息中有关加载properties资源文件只有一条 如下:

    Loading properties file from class path resource [application.properties]

    第二种: classpath*:

    <context:property-placeholder ignore-unresolvable="true"
        location="classpath*:/application.properties" />

    这种配置下运行测试代码,日志信息中有关加载properties资源文件会有三条如下:

     Loading properties file from URL [file:/D:/workspace_sun/framework-dev/micmiu-demoweb/target/test-classes/application.properties]
     Loading properties file from URL [file:/D:/workspace_sun/framework-dev/micmiu-demoweb/target/classes/application.properties]
     Loading properties file from URL [jar:file:/D:/micmiu-test.jar!/application.properties]

    由此日志信息可知:

    • 同名资源存在时,classpath: 只从第一个符合条件的classpath中加载资源,而classpath*: 会从所有的classpath中加载符合条件的资源
    • classpath*:需要遍历所有的classpath,效率肯定比不上classpath,因此在项目设计的初期就尽量规划好资源文件所在的路径,避免使用classpath*来加载
  • 相关阅读:
    windows下安装python,安装框架django。
    如何创建PostgreSQL数据库
    图像灰度化方法总结及其VC实现
    如何将真彩色图转换为各种灰度图
    Win8Metro(C#)数字图像处理--2.40二值图像轮廓提取
    C#GDI+图像处理
    C# 内存法图像处理
    C#调用GDI+1.1中的函数实现高斯模糊、USM锐化等经典效果。
    图像处理之简单数字水印
    解析C#彩色图像灰度化算法的实现代码详解
  • 原文地址:https://www.cnblogs.com/cheng07045406/p/3726151.html
Copyright © 2011-2022 走看看