sysout 삭제
This commit is contained in:
@@ -13,8 +13,6 @@ public class HtmlEscapeDeserializer extends JsonDeserializer<Object> {
|
|||||||
public Object deserialize(JsonParser jsonParser, DeserializationContext deserializationContext)
|
public Object deserialize(JsonParser jsonParser, DeserializationContext deserializationContext)
|
||||||
throws IOException, JacksonException {
|
throws IOException, JacksonException {
|
||||||
String value = jsonParser.getValueAsString();
|
String value = jsonParser.getValueAsString();
|
||||||
System.out.println("🔥 HtmlEscapeDeserializer 실행됨: " + value);
|
|
||||||
System.out.println("convert : " + (value == null ? null : HtmlUtils.htmlEscape(value)));
|
|
||||||
return value == null ? null : HtmlUtils.htmlEscape(value);
|
return value == null ? null : HtmlUtils.htmlEscape(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user