if I do a export spring_profiles_default=staging then run the project it will work. But if I do mvn -Dspring_profiles_default=staging -pl project/abc jetty:run-exploded, it will not work. Any ideas? Thanks.

Also I should mention that I put System.getProperty("spring_profiles_default") in my code and it does get the value passed from mvn -D so it looks like Spring can not get it for some reason.

link|improve this question

79% accept rate
Where do you think should spring resolve/use this property? What do you mean by will not work. Please provide more information. – FrVaBe Feb 8 at 17:27
@Claszen see blog.chariotsolutions.com/2012/01/… – Bobo Feb 8 at 18:51
feedback

1 Answer

up vote 1 down vote accepted

I know about the spring properties spring.profiles.default/spring.profiles.active (Spring 3.1). Did you mix this up with spring_profiles_default?

link|improve this answer
Yeah, that worked. my ref(blog.chariotsolutions.com/2012/01/…) seems to say spring.profiles.default and spring_profiles_default can be used interchangeably, but clearly that is not true. – Bobo Feb 8 at 18:27
feedback

Your Answer

 
or
required, but never shown

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