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

fun.tusi.converter.StringTrimConverter Maven / Gradle / Ivy

package fun.tusi.converter;

import lombok.extern.slf4j.Slf4j;
import org.springframework.core.convert.converter.Converter;

/**
 * String 类型请求参数,去除前后空格
 * @author xy783
 */
@Slf4j
public class StringTrimConverter implements Converter {

	@Override
	public String convert(String source) {
		return source!=null?source.trim():null;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy