暂时不能用的 @Config
This commit is contained in:
16
src/main/java/com/ilummc/tlib/bean/PropertyTypeAdaptor.java
Normal file
16
src/main/java/com/ilummc/tlib/bean/PropertyTypeAdaptor.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package com.ilummc.tlib.bean;
|
||||
|
||||
import com.google.gson.JsonDeserializationContext;
|
||||
import com.google.gson.JsonDeserializer;
|
||||
import com.google.gson.JsonElement;
|
||||
import com.google.gson.JsonParseException;
|
||||
|
||||
import java.lang.reflect.Type;
|
||||
|
||||
public class PropertyTypeAdaptor implements JsonDeserializer<Property> {
|
||||
|
||||
@Override
|
||||
public Property deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext context) throws JsonParseException {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user