我有2个项目。项目A是一个Spring Boot应用程序,主要致力于编辑和更新信息。项目B具有查看信息的方法,我正在尝试将其用作(A)的依赖项,以最大程度地重复使用代码,并最大程度地减少修复任何错误/进行任何改进的工作。
我希望能够使我的控制器和模板正确地动态找到正确的模板。
项目A正确地利用了项目B依赖项中包含的任何服务/手段,但我在使前端播放效果方面遇到问题。过去,我有一个项目没有自己的前端使用,而在第二个项目中定义了模板。这就像在我的配置中的Freemarker TemplateLoaderPath
上设置正确的@Bean
一样简单。这次,我怀疑一旦调用了项目A本地的模板,它将假定在该上下文路径中也找到了任何后续模板,而没有在项目B中查找
对我来说,稍微显示一下项目的结构可能会更容易:src/main/resources/ templates/ feature1/ f1page.ftl feature2/ f2page.ftlMaven Dependencies projectB.jar templates/ feature3/ f3page.ftl feature4/ f4page.ftl
我希望当我为控制器返回新的ModelAndView对象时return new ModelAndView("feature3/f3page.ftl");
和return new ModelAndView("feature1/f1page.ftl");
这将起作用,因为两个功能文件夹都位于templates/
的不同位置。
值得一提的是,正在进行大量的模板导入,因此在这里也需要找到正确的模板。因此,如果f1page.ftl
(在src / main / resources中)具有以下行:<#import "feature3/f3page.ftl" as f3>
这需要在其他位置(在依赖文件.jar内)中找到。
下面是此示例中当前freemarker堆栈跟踪的示例。似乎在返回时找到了f1page.ftl
:new ModelAndView("feature1/f1page.ftl");
,但找不到第2行上的导入feature3/f3page.ftl
。Template importing failed (for parameter value "/feature3/f3page.ftl"): Template not found for name "/feature3/f3page.ftl". The name was interpreted by this TemplateLoader: MultiTemplateLoader(loader1 = FileTemplateLoader(baseDir="C:\Users\Becxxxa\Projects\ProjectA\target\classes\templates", canonicalBasePath="C:\Users\Becxxxa\Projects\ProjectA\target\classes\templates\"), loader2 = ClassTemplateLoader(resourceLoaderClass=org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer, basePackagePath="" /* relatively to resourceLoaderClass pkg */)). ---- FTL stack trace ("~" means nesting-related): - Failed at: #import "/feature3/f3page.ftl" as f3 [in template "feature1/f1page.ftl" at line 2, column 1]
正如您看到的,这是我的@Bean
,我已将setPreferFileSystemAccess
应用于false
(已被建议为here),但无济于事。@Bean public FreeMarkerConfigurationFactoryBean getFreeMarkerConfiguration() { FreeMarkerConfigurationFactoryBean bean = new FreeMarkerConfigurationFactoryBean(); bean.setTemplateLoaderPath("classpath:/templates/"); bean.setPreferFileSystemAccess(false); return bean; }
我可能对Freemarker的要求过高,而这实际上是不可能的。但是,如果不是这样,我需要帮助正确配置我的项目/ freemarker以与两种模板源一起动态工作。我觉得我可能缺少有关模板加载的明显信息。
最佳答案
感谢@Taylor O'Connor,虽然这不是解决方案,但我认为我一直在寻找一种简单的解决方案,以解决似乎很复杂的问题。
我最终使用maven-dependency-plugin
将依赖项所需的模板解压缩到父项目的src / main / resources / templates文件夹中。这满足了我不必维护同一代码的多个源的要求。
这是我添加到pom的插件:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>uk.co.company</groupId>
<artifactId>projectA</artifactId>
<outputDirectory>src/main/resources/</outputDirectory>
<includes>templates/feature3/**</includes>
<excludes>*/feature4/*</excludes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
这会将
feature3
文件夹放入我的templates
文件夹中。我必须排除feature4
,因为它与我的模板文件夹中已有文件夹的名称匹配,对我来说,这是最好的选择,因为模板必须略有不同,因为其中包含我的“ layout.ftl”,但在应用程序。关于java - 是否可以动态地互换使用多个项目中的Freemarker模板?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55590919/