Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As this documentation (http://activemq.apache.org/jndi-support.html) says, "For example if you place this jndi.properties file on your classpath", but how can I place the .properties file on my classpath if I am using eclipse? Thanks a lot.

share|improve this question

2 Answers

up vote 4 down vote accepted

One option is to place your properties file in the src/ directory of your project. This will copy it to the "classes" (along with your .class files) at build time. I often do this for web projects.

share|improve this answer
:) So simple, thank you so much – Cacheing Jul 9 '12 at 12:35

Just to add. If you right-click on an eclipse project and select Properties, select the Java Build Path link on the left. Then select the Source Tab. You'll see a list of all the java source folders. You can even add your own. By default the {project}/src folder is the classpath folder.

see image below

classpath

share|improve this answer
+1 for the "by default". – Daniel Jan 28 at 12:52

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.