Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For my simple maven project this doesn't work:

ApplicationContext context = new ClassPathXmlApplicationContext("config.xml");

config.xml is resided at the same class level

How,actually,add config.xml to classpath? note: my project is a lib,if I do the same in other web project with configuration in web.xml:

        <context-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath*:config.xml</param-value>
        </context-param>

that it works OK

Here I needn't web.xml, just correct classpath.

share|improve this question

2 Answers

up vote 1 down vote accepted

When you enter classpath*:config.xml, the classpath* is a wild card indicates that you want to load every file matching config.xml on the entire classpath, not just the single file config.xml. This may be why your solution is working otherwise.

When instantiating a new ClassPathXmlApplicationContext, try giving the full classpath as an argument: com\sergionni\myproj\config.xml.

share|improve this answer
is it possible to locate this config by just name?thank you – sergionni Nov 4 '11 at 14:43
You can try that same prefix if that's what you need. ApplicationContext context = new ClassPathXmlApplicationContext("classpath*:config.xml"); – BrandonV Nov 4 '11 at 14:54
1  
Brandon,million thanks for your help. – sergionni Nov 4 '11 at 15:29

If your config xml is in package com.anywhere.here then try this:

ApplicationContext myAppContext = new ClassPathXmlApplicationContext("com/anywhere/here/config.xml");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.