mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-08 09:38:26 +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).
|
* Copyright (c) 2022-2023, Mybatis-Flex (fuhai999@gmail.com).
|
||||||
* <p>
|
* <p>
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
@ -28,6 +28,9 @@ import java.io.File;
|
|||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <a href=https://jfinal.com/doc/6-1>JFinal Enjoy</a> 模板引擎实现。
|
||||||
|
*/
|
||||||
public class EnjoyTemplate implements ITemplate {
|
public class EnjoyTemplate implements ITemplate {
|
||||||
|
|
||||||
private final Engine engine;
|
private final Engine engine;
|
||||||
@ -46,7 +49,7 @@ public class EnjoyTemplate implements ITemplate {
|
|||||||
if (!generateFile.getParentFile().exists() && !generateFile.getParentFile().mkdirs()) {
|
if (!generateFile.getParentFile().exists() && !generateFile.getParentFile().mkdirs()) {
|
||||||
throw new IllegalStateException("Can not mkdirs by dir: " + generateFile.getParentFile());
|
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);
|
engine.getTemplate(templateFilePath).render(params, fileOutputStream);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
@ -54,6 +57,11 @@ public class EnjoyTemplate implements ITemplate {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 从文件或者类路径读取模板。
|
||||||
|
*
|
||||||
|
* @author 王帅
|
||||||
|
*/
|
||||||
public static class FileAndClassPathSourceFactory implements ISourceFactory {
|
public static class FileAndClassPathSourceFactory implements ISourceFactory {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user