我app-servlet.xml使用这样的bean 设置属性:
app-servlet.xml
<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')" />