Situation: I have a class MyController that works with some external WebServices.
public class MyController {
private String integrationWebServiceURL;
}
This class web services URL is passed during configuration controller bean in descriptor(applicationContext.xml)
<bean id="myController" class="com.mypath.MyController">
<property name="integrationWebServiceURL" value="${integration.web.service.url}"/>
</bean>
The value is dynamic, actual value is stored in a properties file application.properties
integration.web.service.url=${pom.integration.web.service.url}
But it is not the end - the real value is stored in maven project file (pom.xml) with filtering=true.
<pom.integration.web.service.url>http://mywebservices.com</pom.integration.web.service.url>
So, when we use mvn install test values from pom.xml are copied to appropriate placeholders in application.properties and then tests of my class works just fine.
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"/applicationContext.xml"})
public class MyControllerTest {
}
Question: I need to launch my test from IDE to be able to play with different settings and to use IDE's debug feature. But if I simple launch this test from IDE without preliminary Maven build - than my web service address will be simply acquired from application.properties and equals "${pom.integration.web.service.url}" (e.g. process of Maven filtering doesn't work before test). How can I adjust Maven, Spring or jUnit to extract my value from pom.xml?
NOTE: I know that I can simple set this value explicitly in application.properties or applicationContext.xml files that used by Test-class, but I need extract this values from pom.xml.