Hi, I have to create a spring Bean like,

@Service
public class TestService implements ITestService
{
@Autowired
private ISomeOtherService someOtherService;

private String someProperty;
}

I want to initialize the value of attribute "someProperty" from a properties file. But i am not sure about the autowiring of the variable which will be read from the property file. Please suggest me possible solutions ? I don't was to use xml based bean wiring method.