com.litongjava.tio.utils.json.TioJsonFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-utils Show documentation
Show all versions of tio-utils Show documentation
t-io is a aio framework for java
package com.litongjava.tio.utils.json;
/**
* IJsonFactory 的 jfinal 实现.
*/
public class TioJsonFactory implements IJsonFactory {
private static final TioJsonFactory me = new TioJsonFactory();
public static TioJsonFactory me() {
return me;
}
public Json getJson() {
return new TioJson();
}
}