我的流程类:
@Configurable("checkLicense")
public class CheckLicense {
String licensePath ;
@Value("${licenseKeyNotFound}")
String licenseKeyNotFound;
public boolean checkIn(String licensepath) {
System.out.println("hello "+licenseKeyNotFound);
licensePath = licensepath;
return checkIn();
}
}
我的ApplicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<bean class="com.smart.applicationlicense.CheckLicense"
scope="prototype">
</bean>
</beans>
这是我的属性文件。
licenseKeyNotFound = License File Corrupted
这是我的servlet xml。
<context:property-placeholder location="conf/LicenseSettings.properties"
order="2" ignore-unresolvable="true" />
虽然我已使用@Configurable
注释以及属性Autowire.BY_NAME, Autowire.BY_TYPE
,但我无法从属性文件中启动licenseKeyNotFound
的变量。
我能够从控制器启动变量,但不能从这个声明为@Configurable
的类中启动。
任何人都可以让我知道我错过了什么或我的代码有什么问题? 如果我的代码中有必要,请告诉我。
答案 0 :(得分:1)
试试这个:
在你的春天xml:
<context:property-placeholder location="classpath:your.properties" />
<context:load-time-weaver />
答案 1 :(得分:0)
试试这个
@Configurable
public class CheckLicense {
String licensePath;
String licenseKeyNotFound;
@Value("${licenseKeyNotFound}")
public void setLicenseKeyNotFound(String licenseKeyNotFound) {
this.licenseKeyNotFound = licenseKeyNotFound;
}
public boolean checkIn(String licensepath) {
System.out.println("hello " + licenseKeyNotFound);
licensePath = licensepath;
return checkIn();
}
}
您的属性文件中的
licenseKeyNotFound=${value}