简体   繁体   中英

How can I make gradle include *.ftl files in war file

I have the following structure:

src/main/java/com/company/SomeJavaFile.java
src/main/java/com/company/template_file.ftl

When I create a build using gradle, the *.ftl files dont get included in the war file.

How can I make gradle include them in the war file?

另一种解决方案是将*.ftl文件放入src/main/resources目录中。

Ok, found it. You simply add the following line to your build file:

gradle.build file (add the following line):

sourceSets.main.resources.srcDir 'src/main/java'

Got the answer from the following discussion thread:

http://gradle.1045684.n5.nabble.com/Copy-non-java-files-into-the-target-directory-td1432058.html

为什么不将它们放在src / main / webapp中,如果你使用它们,* .jsp文件会去?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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