Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
820f2806ec | ||
|
808bdf6079 | ||
|
eac1d8d055 | ||
|
d5a88b8be4 | ||
|
fd5d554171 | ||
|
6d18be3df8 | ||
|
869824e2bb | ||
|
84573be584 | ||
|
3cc94a5b32 | ||
|
3a4f4f4495 | ||
|
d250b431a4 | ||
|
5e133e7de5 | ||
|
ef39843a25 | ||
|
0e5f3b7249 |
@@ -34,9 +34,10 @@ Enjoy 是基于 Java 语言的极轻量极魔板引擎。极轻量级仅 171K
|
|||||||
```
|
```
|
||||||
|
|
||||||
**2.详细使用方法见 jfinal 手册**
|
**2.详细使用方法见 jfinal 手册**
|
||||||
read me 正在补充,详细使用文档请下载 jfinal.com 官网的 jfinal 手册[http://www.jfinal.com](http://www.jfinal.com)
|
|
||||||
|
|
||||||
**JFinal 官方网站:[http://www.jfinal.com](http://www.jfinal.com)**
|
read me 正在补充,详细使用文档见官网:[https://www.jfinal.com/doc/6-1](https://www.jfinal.com/doc/6-1)
|
||||||
|
|
||||||
|
**JFinal Enjoy 官方文档:[https://www.jfinal.com/doc/6-1](https://www.jfinal.com/doc/6-1)**
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
2
pom.xml
2
pom.xml
@@ -4,7 +4,7 @@
|
|||||||
<artifactId>enjoy</artifactId>
|
<artifactId>enjoy</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>enjoy</name>
|
<name>enjoy</name>
|
||||||
<version>3.6</version>
|
<version>3.8</version>
|
||||||
<url>http://www.jfinal.com</url>
|
<url>http://www.jfinal.com</url>
|
||||||
<description>Enjoy is a simple, light, rapid, independent, extensible Java Template Engine.</description>
|
<description>Enjoy is a simple, light, rapid, independent, extensible Java Template Engine.</description>
|
||||||
|
|
||||||
|
@@ -26,6 +26,7 @@ import com.jfinal.template.expr.ast.FieldGetter;
|
|||||||
import com.jfinal.template.expr.ast.FieldKeyBuilder;
|
import com.jfinal.template.expr.ast.FieldKeyBuilder;
|
||||||
import com.jfinal.template.expr.ast.FieldKit;
|
import com.jfinal.template.expr.ast.FieldKit;
|
||||||
import com.jfinal.template.expr.ast.MethodKit;
|
import com.jfinal.template.expr.ast.MethodKit;
|
||||||
|
import com.jfinal.template.io.EncoderFactory;
|
||||||
import com.jfinal.template.source.ClassPathSourceFactory;
|
import com.jfinal.template.source.ClassPathSourceFactory;
|
||||||
import com.jfinal.template.source.ISource;
|
import com.jfinal.template.source.ISource;
|
||||||
import com.jfinal.template.source.ISourceFactory;
|
import com.jfinal.template.source.ISourceFactory;
|
||||||
@@ -471,6 +472,17 @@ public class Engine {
|
|||||||
return config.getEncoding();
|
return config.getEncoding();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enjoy 模板引擎对 UTF-8 的 encoding 做过性能优化,某些偏门字符在
|
||||||
|
* 被编码为 UTF-8 时会出现异常,此时可以通过继承扩展 EncoderFactory
|
||||||
|
* 来解决编码异常,具体用法参考:
|
||||||
|
* http://www.jfinal.com/feedback/5340
|
||||||
|
*/
|
||||||
|
public Engine setEncoderFactory(EncoderFactory encoderFactory) {
|
||||||
|
config.setEncoderFactory(encoderFactory);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
public Engine setWriterBufferSize(int bufferSize) {
|
public Engine setWriterBufferSize(int bufferSize) {
|
||||||
config.setWriterBufferSize(bufferSize);
|
config.setWriterBufferSize(bufferSize);
|
||||||
return this;
|
return this;
|
||||||
|
@@ -17,7 +17,6 @@
|
|||||||
package com.jfinal.template;
|
package com.jfinal.template;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileNotFoundException;
|
|
||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
@@ -117,16 +116,10 @@ public class Template {
|
|||||||
* 适用于代码生成器类似应用场景
|
* 适用于代码生成器类似应用场景
|
||||||
*/
|
*/
|
||||||
public void render(Map<?, ?> data, File file) {
|
public void render(Map<?, ?> data, File file) {
|
||||||
FileOutputStream fos = null;
|
try (FileOutputStream fos = new FileOutputStream(file)) {
|
||||||
try {
|
|
||||||
fos = new FileOutputStream(file);
|
|
||||||
render(data, fos);
|
render(data, fos);
|
||||||
} catch (FileNotFoundException e) {
|
} catch (IOException e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
} finally {
|
|
||||||
if (fos != null) {
|
|
||||||
try {fos.close();} catch (IOException e) {e.printStackTrace(System.err);}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -28,8 +28,8 @@ public class TemplateException extends RuntimeException {
|
|||||||
super(loc != null ? msg + loc : msg);
|
super(loc != null ? msg + loc : msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
public TemplateException(String msg, Location loc, Throwable t) {
|
public TemplateException(String msg, Location loc, Throwable cause) {
|
||||||
super(loc != null ? msg + loc : msg, t);
|
super(loc != null ? msg + loc : msg, cause);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -133,6 +133,10 @@ public class FieldKit {
|
|||||||
|
|
||||||
getters = ret.toArray(new FieldGetter[ret.size()]);
|
getters = ret.toArray(new FieldGetter[ret.size()]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void clearCache() {
|
||||||
|
fieldGetterCache.clear();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -115,6 +115,10 @@ public class MethodKit {
|
|||||||
forbiddenMethods.remove(methodName);
|
forbiddenMethods.remove(methodName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void clearCache() {
|
||||||
|
methodCache.clear();
|
||||||
|
}
|
||||||
|
|
||||||
public static MethodInfo getMethod(Class<?> targetClass, String methodName, Object[] argValues) {
|
public static MethodInfo getMethod(Class<?> targetClass, String methodName, Object[] argValues) {
|
||||||
Class<?>[] argTypes = getArgTypes(argValues);
|
Class<?>[] argTypes = getArgTypes(argValues);
|
||||||
Long key = getMethodKey(targetClass, methodName, argTypes);
|
Long key = getMethodKey(targetClass, methodName, argTypes);
|
||||||
|
@@ -18,7 +18,6 @@ package com.jfinal.template.source;
|
|||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
@@ -64,7 +63,7 @@ public class ClassPathSource implements ISource {
|
|||||||
this.classLoader = getClassLoader();
|
this.classLoader = getClassLoader();
|
||||||
this.url = classLoader.getResource(finalFileName);
|
this.url = classLoader.getResource(finalFileName);
|
||||||
if (url == null) {
|
if (url == null) {
|
||||||
throw new IllegalArgumentException("File not found : \"" + finalFileName + "\"");
|
throw new IllegalArgumentException("File not found in CLASSPATH or JAR : \"" + finalFileName + "\"");
|
||||||
}
|
}
|
||||||
|
|
||||||
processIsInJarAndlastModified();
|
processIsInJarAndlastModified();
|
||||||
@@ -141,9 +140,8 @@ public class ClassPathSource implements ISource {
|
|||||||
|
|
||||||
public static StringBuilder loadFile(InputStream inputStream, String encoding) {
|
public static StringBuilder loadFile(InputStream inputStream, String encoding) {
|
||||||
StringBuilder ret = new StringBuilder();
|
StringBuilder ret = new StringBuilder();
|
||||||
BufferedReader br = null;
|
|
||||||
try {
|
try (BufferedReader br = new BufferedReader(new InputStreamReader(inputStream, encoding))) {
|
||||||
br = new BufferedReader(new InputStreamReader(inputStream, encoding));
|
|
||||||
// br = new BufferedReader(new FileReader(fileName));
|
// br = new BufferedReader(new FileReader(fileName));
|
||||||
String line = br.readLine();
|
String line = br.readLine();
|
||||||
if (line != null) {
|
if (line != null) {
|
||||||
@@ -159,16 +157,6 @@ public class ClassPathSource implements ISource {
|
|||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
}
|
}
|
||||||
finally {
|
|
||||||
if (br != null) {
|
|
||||||
try {
|
|
||||||
br.close();
|
|
||||||
} catch (IOException e) {
|
|
||||||
// com.jfinal.kit.LogKit.error(e.getMessage(), e);
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public String toString() {
|
public String toString() {
|
||||||
|
@@ -19,7 +19,6 @@ package com.jfinal.template.source;
|
|||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileInputStream;
|
import java.io.FileInputStream;
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import com.jfinal.template.EngineConfig;
|
import com.jfinal.template.EngineConfig;
|
||||||
|
|
||||||
@@ -92,9 +91,8 @@ public class FileSource implements ISource {
|
|||||||
|
|
||||||
public static StringBuilder loadFile(File file, String encoding) {
|
public static StringBuilder loadFile(File file, String encoding) {
|
||||||
StringBuilder ret = new StringBuilder((int)file.length() + 3);
|
StringBuilder ret = new StringBuilder((int)file.length() + 3);
|
||||||
BufferedReader br = null;
|
|
||||||
try {
|
try (BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file), encoding))) {
|
||||||
br = new BufferedReader(new InputStreamReader(new FileInputStream(file), encoding));
|
|
||||||
// br = new BufferedReader(new FileReader(fileName));
|
// br = new BufferedReader(new FileReader(fileName));
|
||||||
String line = br.readLine();
|
String line = br.readLine();
|
||||||
if (line != null) {
|
if (line != null) {
|
||||||
@@ -110,16 +108,6 @@ public class FileSource implements ISource {
|
|||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
}
|
}
|
||||||
finally {
|
|
||||||
if (br != null) {
|
|
||||||
try {
|
|
||||||
br.close();
|
|
||||||
} catch (IOException e) {
|
|
||||||
// com.jfinal.kit.LogKit.error(e.getMessage(), e);
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public String toString() {
|
public String toString() {
|
||||||
|
@@ -69,7 +69,7 @@ public class Include extends Stat {
|
|||||||
Expr expr = exprList.getExpr(0);
|
Expr expr = exprList.getExpr(0);
|
||||||
if (expr instanceof Const && ((Const)expr).isStr()) {
|
if (expr instanceof Const && ((Const)expr).isStr()) {
|
||||||
} else {
|
} else {
|
||||||
throw new ParseException("The first parameter of #include directive must be String", location);
|
throw new ParseException("The first parameter of #include directive must be String, or use the #render directive", location);
|
||||||
}
|
}
|
||||||
// 其它参数必须为赋值表达式
|
// 其它参数必须为赋值表达式
|
||||||
if (len > 1) {
|
if (len > 1) {
|
||||||
|
Reference in New Issue
Block a user