我的非控制器类将是,
public class Authorization {
String licensePath ;
@Value("${licenseKeyNotFound}")
String licenseKeyNotFound;
public boolean checkIn(String licensepath) {
System.out.println("hello "+licenseKeyNotFound);
licensePath = licensepath;
return checkIn();
}
}
这是我的属性文件。
licenseKeyNotFound = License File Corrupted
我的login-servlet.xml
意志是
<context:property-placeholder location="conf/LicenseSettings.properties"
order="2" ignore-unresolvable="true" />
我没有把它放在 applicationcontext.xml 中。对吗?