我正在尝试使用以下代码从外部属性文件中读取。我很确定我已正确设置路径,但我仍然收到文件未找到错误。有什么建议?这是我的代码:
public class Timer {
@Autowired
private ApplicationContext ctx;
@Autowired
private SpringMailSender springMailSender;
@Scheduled(cron="${timer.time}") //this is the line that is having trouble
public void timer()
{
System.out.println("timer() in Timer Class has been stepped into");
try {
springMailSender.sendMail();
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("Method executed on every 2nd Monday of each month. Current time is :: "+ new Date());
}
}
以下是我为其设置配置文件的方法......
<!-- Property Placeholder -->
<bean
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:properties/system.properties</value>
<value>file:${external.property.directory}propfilename</value>
</list>
</property>
</bean>
<!-- messageSource -->
<bean id="messageSource"
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basenames">
<list>
<value>file:${external.property.directory}propfilename</value>
</list>
</property>
</bean>
我的外部文件路径在Web应用程序的属性文件中设置如下。
#directory on the server where property files will be stored
external.property.directory=C\:\\propfoldername\\
我得到的错误是:
org.springframework.beans.factory.BeanInitializationException: Could not load properties; nested exception is java.io.FileNotFoundException: ${external.property.directory}propfilename (The system cannot find the file specified)
任何帮助将不胜感激。如果我遗漏了一些您可能需要查看的代码,请告诉我。
答案 0 :(得分:1)
您尝试做的事情无法正常工作,因为$ {external.property.directory}无法解决。 您可以使用环境变量获得相同的结果,以防您需要两个属性文件(请注意第二个属性中的任何属性将覆盖第一个属性中的相同属性)