1

我的流程类:

@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

谁能让我知道我缺少什么或我的代码有什么问题?
请让我知道我的代码是否需要某些内容。

4

2 回答 2

1

尝试这个:

在你的春天 xml 中:

<context:property-placeholder location="classpath:your.properties" />
<context:load-time-weaver />
于 2013-01-23T10:50:02.490 回答
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}
于 2013-01-23T10:19:00.637 回答