Is it possible to assign the properties of a bean, to properties contained within a Properties object, loaded using util

roperties ?
Atm, I have a property holder class, that get's assigned the properties object, and lazely get's the properties out e.g:
public String getSearchURL(){
return props.getProperty("search");
}
I know I can do it using PropertyPlaceholderConfigurer, but I can't in my case, because I already used that to selectively load a properties file.
What I would like to do:
<bean id="propertyConfigurer"
class="PropertyPlaceholderConfigurer">
<property name="location" value="classpath:environment.properties"/>
</bean>
<util

roperties id="testURLs" value="classpath:test-urls.properties"/>
<util

roperties id="devURLs" value="classpath:dev-urls.properties"/>
<bean id="urlsHolder" class="my.package.URLHolder">
<property name="searchWebServiceURL" value="${env}URLs.search"/>
<property name="addWebServiceURL" value="${env}URLs.add"/>
<property name="deleteWebServiceURL" value="${env}URLs.delete"/>
</bean>
environment.properties:
env=test
test-urls.properties:
search=http://test/testerTeam/search
add=http://test/testerTeam/add
delete=http://test/testerTeam/delete
dev-urls.properties:
search=http://dev/developmentWS/search
add=http://dev/developmentWS/add
delete=http://dev/developmentWS/delete
Something else comes to mind - in a simpler environemt, it could be solved. If let's say, the url's all had a common suffix - let's say all SEARCH url's used {something}/WebServices/search.ws , then you could have this:
wsPrefix.properties:
#TEST
#wsHost=http://testHost/test/
#DEV
wsHost=http://devServer/thisProject/
wsUrls:
search=WebServices/search
add=WebServices/add
delete=WebServices/delete
<bean id="propertyConfigurer"
class="PropertyPlaceholderConfigurer">
<property name="location" value="classpath:wsPrefix.properties"/>
<property name="location" value="classpath:wsUrls.properties"/>
</bean>
<bean id="urlsHolder" class="my.package.URLHolder">
<property name="searchWebServiceURL" value="${wsHost}${search}"/>
<property name="addWebServiceURL" value="${wsHost}${add}"/>
<property name="deleteWebServiceURL"value="${wsHost}${delete }"/>
</bean>
I think that would work, but I haven't tried it. Plus, it would only work if the url's all conformed. This might work in my environment, but I would rather do something more general, like what I described above.
Thoughts? Am I missing something?