我正在做一个Spring MVC应用程序。我在类路径上有一个config.properties。在这个文件中,我有以下内容:
some_indicator=true
如何直接在JSP中使用此值?可以通过JSTL使用的东西,如下所示(只是一个想法):
<c:if test="${ some_indicator }">
....do something
</c:If>
谢谢!
更新
config.properties不能通过Spring的ReloadableResourceBundleMessageSource获得。它不是消息文件。
答案 0 :(得分:0)
您可以访问config.properties中的值,就像它是一条消息
<fmt:message key="some_indicator" />
将值放在变量
中<c:set var="testvar" value='<fmt:message key="key" />' />
然后根据需要使用。
<c:if test="${testvar}">
....do something
</c:if>