mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 17:18:24 +08:00
style: 添加 EnjoyTemplate 注释。
This commit is contained in:
parent
ab2c5b706a
commit
933e4dfb48
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/*
|
||||
* Copyright (c) 2022-2023, Mybatis-Flex (fuhai999@gmail.com).
|
||||
* <p>
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@ -28,6 +28,9 @@ import java.io.File;
|
||||
import java.io.FileOutputStream;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* <a href=https://jfinal.com/doc/6-1>JFinal Enjoy</a> 模板引擎实现。
|
||||
*/
|
||||
public class EnjoyTemplate implements ITemplate {
|
||||
|
||||
private final Engine engine;
|
||||
@ -43,17 +46,22 @@ public class EnjoyTemplate implements ITemplate {
|
||||
|
||||
@Override
|
||||
public void generate(Map<String, Object> params, String templateFilePath, File generateFile) {
|
||||
if (!generateFile.getParentFile().exists() && !generateFile.getParentFile().mkdirs()){
|
||||
if (!generateFile.getParentFile().exists() && !generateFile.getParentFile().mkdirs()) {
|
||||
throw new IllegalStateException("Can not mkdirs by dir: " + generateFile.getParentFile());
|
||||
}
|
||||
|
||||
try(FileOutputStream fileOutputStream = new FileOutputStream(generateFile)) {
|
||||
// 开始生成文件
|
||||
try (FileOutputStream fileOutputStream = new FileOutputStream(generateFile)) {
|
||||
engine.getTemplate(templateFilePath).render(params, fileOutputStream);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 从文件或者类路径读取模板。
|
||||
*
|
||||
* @author 王帅
|
||||
*/
|
||||
public static class FileAndClassPathSourceFactory implements ISourceFactory {
|
||||
|
||||
@Override
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user