我有一些使用proj_SDK.jar
构建的Spring
。我有jar
的来源,所以我看到以下配置类:
package com.my.private;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
/**
* Configuration of Spring Beans file name.
*
*/
@Configuration
@ImportResource({"classpath:base-core-beans.xml", "classpath:base-security-context.xml"})
public class XmlConfig
{
}
但问题是我不想加载base-security-context.xml
上下文文件。我想只有base-core-beans.xml
上下文
我该怎么办才能加载base-core-beans.xml
?
一些(可能)有用的细节:
我正在构建一个Web应用程序,所以最终我还会有web.xml
个文件