All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.coufran.springboot.starter.log.serializer.DummySerializer Maven / Gradle / Ivy

The newest version!
package cn.coufran.springboot.starter.log.serializer;

/**
 * 空转序列化器
 * @author Coufran
 * @version 1.1.0
 * @since 1.1.0
 */
public class DummySerializer implements Serializer {
    /**
     * 将对象转为固定的值“\”
     * @param obj 对象
     * @return 固定值
     */
    @Override
    public String serialize(Object obj) {
        return "\\";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy