关于Engine设置ClassPathSourceFactory问题

jfinal的模板引擎Engine如果要使用jar种的资源,就得开启me.setToClassPathSourceFactory();

但是开启了me.setToClassPathSourceFactory()之后,就不能使用外部的资源了,得将项目的webapp的文件迁移到src/main/resource,但打包更新前端的页面就不能热部署修改了,所以能不能同时使用jar中的资源和src/main/webapp

外部的资源?开启了me.setToClassPathSourceFactory(),就优先找jar中的资源,如果找不到就到外部的目录找?

评论区

杜福忠

2025-04-02 15:43

我们有项目是自定义ISourceFactory,里面使用 fileName 前缀做判断:
class: 就用ClassPathSource。
db: 就用自定义ISource 在Db数据库中取模板。
url: 就用自定义ISource 在HttpKit中取模板。
file: 和else默认就用FileSource。

PS:如果只想实现优先找jar中的资源,没有再webapp中找。就自定义一个ISourceFactory调用自己继承的ClassPathSource覆写,判断一下就可以了

琴海森林

2025-04-03 11:37

@杜福忠 杜总威武,自定义重新实现ClassPathSource就可以了
public MyClassPathSource(String baseTemplatePath, String fileName, String encoding) {
this.finalFileName = buildFinalFileName(baseTemplatePath, fileName);
this.fileName = fileName;
this.encoding= encoding;
this.classLoader = getClassLoader();
this.url = classLoader.getResource(finalFileName);
if (url == null) {
try {
File file = new File(finalFileName);
if(file.exists()) {
this.url = file.toURI().toURL();
} else {
file = new File("src/main/webapp/"+finalFileName);
if(file.exists()) {
this.url = file.toURI().toURL();
this.finalFileName="src/main/webapp/"+finalFileName;
} else {
file = new File("webapp/"+finalFileName);
if(file.exists()) {
this.url = file.toURI().toURL();
this.finalFileName="webapp/"+finalFileName;
}else {
this.url = classLoader.getResource("webapp/"+finalFileName);
this.finalFileName = "webapp/"+finalFileName;
}
}
}
} catch (MalformedURLException e) {
e.printStackTrace();
}

if(url==null)
throw new IllegalArgumentException("File not found in CLASSPATH or JAR : \"" + finalFileName + "\"");

}

processIsInJarAndlastModified();
}

热门反馈

扫码入社