我正在尝试从一些我被要求使用的资源包中获取键/值对
通常在我们的 HTML 块中(在 JSP 文件中),我们可能会有类似
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<h1><spring:message code="gr.common.title"/></h1>
但是,我想在用 HTML 输出字符串之前用 Java 做一些事情,比如
<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<%
// pseudo below
String foo = "This is my %s title".format(PSEUDO_MESSAGE("gr.common.title"));
%>
<h1><%= foo %></h1>
我找到了这个例子,但这似乎在 .java 文件或等效文件中