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

In JBoss 4.2.3 the System property 'user.dir' is defined to be

<JBoss-root>/bin

when I ran the same application on JBoss 5.1 I noticed that it cannot find the System property user.dir

why there is no default definition for version 5.1?
and how can I define it manually? I followed this suggestion and added my property into properties-service.xml but it had no affect and still JBoss couldn't find the system:user.dir value.

share|improve this question

2 Answers

up vote 1 down vote accepted

This is the solution to my problem. I didn't describe the proeblem correctly in this thread.

share|improve this answer

This works for me. Did you notice that the Properties attribute in properties-service.xml is commented out by default?

share|improve this answer
It's not commented in my file. How can I view the list of properties that are defined through JBoss console? – Spiderman May 25 '10 at 9:15
The mbean jboss:name=SystemProperties,type=Service has a method, showAll(). It's accessible in jmx-console. – pra May 25 '10 at 15:03

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.