如何在Spring MVC应用程序中显示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中访问属性?
回答:
spring配置
<util:properties id="propertyConfigurer" location="classpath:yourPropertyFileClasspathHere "/>
<context:property-placeholder properties-ref="propertyConfigurer" />
jsp
<spring:eval expression="@propertyConfigurer.getProperty('propertyNameHere')" />
以上是 如何在Spring MVC应用程序中显示JSP中属性文件中的值 的全部内容, 来源链接: utcz.com/qa/404591.html