Tagged Questions
0
votes
0answers
32 views
spring profile groups
I have an application, for which I can specify the profiles I want to run it on.
but I also want to group these profiles into things like credentails, application performance, memory-print, ...
22
votes
3answers
7k views
Default profile in Spring 3.1
In my application I have beans annotated with @Profile("prod") and @Profile("demo").
The first one, as you can guess :), is used on beans that connect to production DB and second one annotates beans ...
0
votes
1answer
520 views
How to properly set up multi profile maven project?
Hey, I'm talking about profiles within pom.xml of a project. Could please anybody explain to me, why if I have 2 profiles in pom definition and I run test phase from one of the profiles, both the Main ...
2
votes
1answer
902 views
How to build multiple configurations of an artifact (e.g. WAR etc.) with Maven?
due to the modular nature of some of our current applications, we have a need to understand how to setup Maven to produces mutliple configurations of the same artifact (in our case a WAR file), ...
0
votes
1answer
384 views
How to implement profiles in an Android application?
I'm coding an app that uses configurable profiles for different user preferences: many different users will use the same app on the same device.
The problem is that I can't use Android's ...