FreeMarker返回模板的以下内容:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>302 Found</title>
</head><body>
<h1>Found</h1>
<p>The document has moved <a href="https://someOtherUrl">here</a>.</p>
</body></html>
根本不可能发生。 FreeMaker如何获得它? 创建并使用FreeMarker配置:
Configuration configuration = new Configuration(Configuration.VERSION_2_3_22);
...
@PostConstruct
void init()
{
configuration.setDefaultEncoding(StandardCharsets.UTF_8.toString());
configuration.setTemplateExceptionHandler(TemplateExceptionHandler.RETHROW_HANDLER);
configuration.setTemplateLoader(new TemplateLoader());
configuration.setLocale(Locale.ENGLISH);
}
...
Template temp = configuration.getTemplate(sourceTemplateUrl);
我可以摆脱这种“聪明”的行为吗?
修改
public class TemplateLoader extends URLTemplateLoader
{
private static final String LOCAL_PREFIX = "_" + Locale.ENGLISH;
@Override
protected URL getURL(final String url)
{
try
{
//get rid of "_en" in the url, FreeMarker set it based on Locale
return new URL(url.replace(LOCAL_PREFIX, ""));
}
catch (MalformedURLException e)
{
throw new RuntimeException(e);
}
}
}
答案 0 :(得分:1)
该页面不是由FreeMarker生成的。 FreeMarker没有HTTP魔法,只是生成文本。 (当然,如果你让FreeMarker从返回此文本的URL加载模板,那么它在技术上来自FreeMarker。)
此外,您的TemplateLoader
对我来说看起来不起作用,因为您只需从相对路径创建URL -s (更新:您传入完整的URL-s,所以它可以工作,但你也必须处理HTTP响应代码)。但是你不应该在那里进行这样的名称更改。如果您不想进行本地化查找,请将其关闭:
configuration.setLocalizedLookup(false);
如果您需要更复杂的东西,请查看configuration.setTemplateLookupStrategy
。