在独立Java类中使用ClassPathXmlApplicationContext

前端之家收集整理的这篇文章主要介绍了在独立Java类中使用ClassPathXmlApplicationContext前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我还没有接触到 Spring.我在我的系统中的一个独立java项目中看到了下面的代码.你能帮我理解下面的代码.我无法在项目中看到spring.xml – 它是否必须存在并且缺失?
appContext = new ClassPathXmlApplicationContext(new String[] {
        "classpath*:/Meta-INF/spring.xml","classpath*:myapplication-application-context.xml"
        });

解决方法

classpath *语法意味着Spring将在类路径中搜索名为/Meta-INF/spring.xml和myapplication-application-context.xml的所有资源,并将它们合并到上下文中.这包括查看项目中的JAR文件,因此主项目文件中可能没有任何可见文件.
原文链接:https://www.f2er.com/java/125669.html

猜你在找的Java相关文章