小编典典

如何在Spring MVC应用程序中显示JSP中属性文件中的值

jsp

app-servlet.xml使用这样的bean 设置属性:

    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
            <property name="location" value="/WEB-INF/my.properties"></property>
    </bean>

大多数情况下,我访问控制器或其他此类的属性:

@Value("${dbtype}")
public String dbType;

但是,如果我想在JSP文件中使用属性并绕过控制器怎么办?这意味着我不希望将值类型从控制器传递给JSP作为模型属性。

有没有一种方法可以直接在jsp中访问属性?


阅读 315

收藏
2020-06-08

共1个答案

小编典典

spring配置

<util:properties id="propertyConfigurer" 
                  location="classpath:yourPropertyFileClasspathHere "/>
<context:property-placeholder properties-ref="propertyConfigurer" />

jsp

<spring:eval expression="@propertyConfigurer.getProperty('propertyNameHere')" />
2020-06-08