Is it possible to use the @ImportResource annotation with a system property specifying the file location?
This doesnt work:
Where "properties.location" is a system property specifying the location of the file.Code:@ImportResource("${properties.location}") public class Config { ... }


Reply With Quote