当前位置: 首页 > 知识库问答 >
问题:

无法使用Spring中的@value从属性中获取值

尚棋
2023-03-14
    public class BaseTest {

           @Value("${TOWN}")
           public String stringValue;

           @BeforeTest
           public void beforeTest(){
               ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
               Student student =  context.getBean("studentBean", Student.class);
               student.displayName();
               student.displayTown();

               System.out.println(stringValue); // -> this is null
           }
       }

Beans文件:

        <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">

            <context:property-placeholder location="classpath:stable.properties"/>
            <context:component-scan base-package="com.base" />

            <bean name="studentBean" class="com.model.Student">
                <property name="name" value="MyName"/>
                <property name="town" value="${TOWN}"/>
            </bean>

        </beans>
        public class Student {
            private String name;
            private String town;

            public String getName(){
                return name;
            }

            public void setName(String name){
                this.name = name;
            }

            public String getTown() {
                return town;
            }

            public void setTown(String town) {
                this.town = town;
            }

            public void displayName(){
                System.out.println("Name: " + name);
            }

            public void displayTown(){
                System.out.println("Town: " + town);
            }

        }

在BaseTest中,当调用DisplayTown()方法时,属性文件中的值起作用,但如果试图将该值用作BaseTest中的变量,则该值为空。你能帮帮我吗?

共有1个答案

许俊贤
2023-03-14

正如您所确认的,baseTest只是一个普通类。将不会自动注入值。

在xml中

<context:property-placeholder location="classpath:stable.properties"/>

它会自动配置PropertyPlaceHolderConfigureer,替换根据指定属性文件解析${}占位符。

<context:component-scan base-package="com.base" />
<bean name="studentBean" class="com.model.Student">
    <property name="name" value="MyName"/>
    <property name="town" value="${TOWN}"/>
</bean>

请注意,这只会发生在student类中。

您正在尝试的是在BaseTest类中获取值,这只是一个类。

定义一个bean为baseTest类注入属性,如下所示

<bean name="baseTestBean" class="classpath.BaseTest">
    <property name="stringValue" value="${TOWN}"/>
</bean>

类中不需要@value(“${TOWN}”)

添加任何一个配置,它将自动扫描您的类,只要它位于com.base包下

 类似资料:
  • 这是我的建筑。格雷德尔 因此,restTemplate抛出NullPointerException而不是返回模拟obj。

  • 我创建了一些示例spring cloud应用程序来使用eureka和配置服务器。在一个fance-server组件中,我尝试使用configuration属性,该属性是在database.yml的config-server中配置的。我使用的是通过start.spring.io页面创建的Brixton.m3版本。 启动eureka-server似乎没问题。 启动配置服务器似乎也没问题(配置服务器在e

  • 我正在尝试使用JAXB读取一个xml。 我正面临一个奇怪的问题,其中父类的属性没有被读取,但子类的属性被读取。我参考了论坛,但这似乎是一个奇怪的论坛。 谁能告诉我我犯了什么错误。 XML。 电话目录类 电话号码类 主类 输出 如您所见,尽管提到了字段的XMLAt⃣注释,但exchange eName为null。 谢谢,毗湿奴

  • 在woocommerce my-account中,我想显示与一个变体属性相关的所有销售。在我的例子中,属性是艺人名称。我想显示与艺术家相关的每个产品的每个订单的尺寸/数量和买家名称。如果size为空,我想检索包含我添加的size的variation_sku。 我开始使用这个函数从Woocommerce中的产品ID获取所有订单ID 结果是相当好的90%的情况下,除了一些订单。“variation_i

  • 我想在spring boot web Project中使用来自Application.Properties的@Value注释获取值。我认为我可以使用@value注释,因为我认为application.properties中的变量是动态加载的。但是当我只写@value注释时,它就不起作用了。 我在申请中有一个属性。poperties 我如何解决这个问题??