我有一个简单的spring启动应用程序,我需要从application.properties文件中打印属性值。
Application.properties文件存储在src / main / resources
中在这里,我简化了我的问题并提供了一些我在我的应用程序中使用的示例代码。
以下是我试图获取价值的代码。
@SpringBootApplication
public class Application {
@Value("${secret.property}")
static String secret;
public static void main(String[] args) throws Exception {
System.out.println("Hello World!");
SpringApplication.run(Application.class, args);
}
public static void run(String... arg0) throws Exception {
System.out.println("Secret key: " + secret);
}
}
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ezetap</groupId>
<artifactId>jasypt-test2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>jasypt-test2</name>
<url>http://maven.apache.org</url>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.5.RELEASE</version>
</parent>
<properties>
<main.basedir>${basedir}/../..</main.basedir>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt</artifactId>
<version>1.9.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
输出:
command: java -jar target/jasypt-test2-0.0.1-SNAPSHOT.jar
2016-08-09 12:01:12.299 INFO 7350 --- [ main] com.ezetap.test.Application : Started Application in 0.825 seconds (JVM running for 1.15)
Secret key: null
2016-08-09 12:01:12.300 INFO 7350 --- [ Thread-2] s.c.a.AnnotationConfigApplicationContext : Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@339a956c: startup date [Tue Aug 09 12:01:11 IST 2016]; root of context hierarchy
我无法找到原因。
答案 0 :(得分:2)
请注意,值注释的处理由BeanPostProcessor
执行,而静态事物属于类而不是类的实例。只有Spring容器创建实例后才能获得该值。您可以将该逻辑移动到单独的类中,并使用main中的应用程序上下文创建该类的bean。