gpt4 book ai didi

java - 在 spring 中读取属性文件

转载 作者:行者123 更新时间:2023-12-01 12:56:28 25 4
gpt4 key购买 nike

我有一个使用 Spring MVC 的 Web 应用程序。我在 sample.properties 文件中定义了一些常量。 spring-servlet 是为我的应用程序中的所有 url 进行初始化的 servlet。 spring-servlet:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
<context:property-placeholder location="classpath:sample.properties"/>
</beans>

在我的一个 java 类中,我访问如下属性之一的值:

package com.sample;

import com.google.gson.JsonArray;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class Validator {

@Value("${credit}")
String credits;

private static final Logger LOG = Logger.getLogger(Validator.class);

public void checkRating() {
LOG.debug(credits);
}
}

样本.属性:

credit=[{"duration":15,"credit":10},{"duration":30,"credit":20}]

当从 Controller 调用 Validator 时,它只是将其记录为 ${credit} 在我的日志文件中。我不明白它的值(value)。同样,如果我在属性文件中放入整数/ float ,则会收到一条错误消息,指出它无法转换为整数/ float 。我是否缺少任何配置?

最佳答案

这样做的原因是因为 propertyplaceholder 配置器是 BeanFactoryPostProcessor并且它仅处理在配置 propertyplaceholder 的上下文中定义的 bean。在 Web 应用程序中,通常存在上下文层次结构,如 here 所解释的那样。 。因此您需要在适当的地方声明这一点。

关于java - 在 spring 中读取属性文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23843216/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com