我的流程类:
@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
。
谁能让我知道我缺少什么或我的代码有什么问题?
请让我知道我的代码是否需要某些内容。