简体   繁体   English

从嵌套JAR加载速度模板

[英]Loading Velocity Templates from nested JARs

I have an application packaged inside of a onejar, which uses Velocity for templating. 我有一个打包在onejar中的应用程序,该应用程序使用Velocity进行模板化。

In my maven project setup, I have a file in $base/src/main/resources/template.html . 在我的Maven项目设置中,我在$base/src/main/resources/template.html有一个文件。 When the app gets packaged as a onejar, the resulting onejar contains a nested jar inside of it (under main/my-jar.jar). 当应用程序打包为onejar时,生成的onejar在其内部包含一个嵌套jar(在main / my-jar.jar下)。 That jar in turn has that template.html file packaged under its root. 反过来,该jar会将打包的template.html文件打包在其根目录下。 (Apparently maven copied it from src/main/resources into the root of the package) (显然,maven将其从src / main / resources复制到了软件包的根目录中)

I'd like to load that template as a resource in Velocity. 我想将该模板作为Velocity中的资源加载。 I've read I need to use a ClassPathResourceLoader to do that, so I have code that looks like this: 我已经读过我需要使用ClassPathResourceLoader来做到这一点,所以我有如下代码:

    VelocityEngine ve = new VelocityEngine();
    ve.setApplicationAttribute("resource.loader", "class");

    ve.setApplicationAttribute("class.resource.loader.class", 
                               org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader.class);

    ve.init();
    Template t = ve.getTemplate("template.html");

This fails every time, with an exception that none of Velocity's resource loaders can find the file. 每次都失败,除了Velocity的资源加载器找不到该文件之外。

I have two questions - first, is this even the right way to configure the use of the ClasspathResourceLoader? 我有两个问题-首先,这是否是配置ClasspathResourceLoader使用的正确方法? And second, if that were configured properly, what path would I specify so that template.html could be found inside of that inner nested jar? 其次,如果配置正确,我将指定什么路径,以便可以在该内部嵌套jar中找到template.html?

I managed to find the answer after a lot of digging. 经过大量挖掘,我设法找到了答案。

The code to use the ClasspathResourceLoader is as follows: 使用ClasspathResourceLoader的代码如下:

VelocityEngine ve = new VelocityEngine();

ve.setProperty(RuntimeConstants.RESOURCE_LOADER, "classpath"); 
ve.setProperty("classpath.resource.loader.class", ClasspathResourceLoader.class.getName());

ve.init();

Secondly, many people are telling me that inside of a nested jar, the standard classpath loader shouldn't even be able to find the template.html file. 其次,许多人告诉我,在一个嵌套的jar内,标准的classpath加载器甚至都无法找到template.html文件。 I was told that some fancy third party classloader would be necessary. 有人告诉我,一些花哨的第三方类加载器是必要的。 OneJar provides such a fancy loader. OneJar提供了这种精美的装载机。 Once I got the code correct to use the ClasspathResourceLoader, things seemed to resolve. 一旦我获得正确的代码以使用ClasspathResourceLoader,事情似乎就解决了。

The thing to keep in mind is that "/" is relative to the classpath root. 要记住的是“ /”相对于类路径根。 So when $base/src/main/resources/template.html got repackaged as template.html in the root directory of the unpacked JAR, that meant that /template.html was the right resource path to load. 因此,当$base/src/main/resources/template.html在解压缩的JAR的根目录中重新打包为template.html时,这意味着/template.html是要加载的正确资源路径。

That path /template.html is of course relative to the nested inner JAR. 该路径/template.html当然是相对于嵌套内部JAR的。 How the class loader (whether standard or OneJar) didn't get confused between the / of the outer jar and the inner jar, I don't know. 我不知道类加载器(无论是标准加载器还是OneJar)在外罐和内罐的/之间如何混淆。

specify the path where your template.html resides using / as relative path 使用/作为相对路径,指定template.html所在的路径

and use setProperty like below 并使用如下的setProperty

VelocityEngine ve = new VelocityEngine();
            ve.setProperty(RuntimeConstants.RESOURCE_LOADER, "classpath");
            ve.setProperty("classpath.resource.loader.class", ClasspathResourceLoader.class.getName());

            ve.init();

            final String templatePath = "/" + template + ".html";


            Template template = ve.getTemplate(templatePath, "UTF-8");

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM