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

com.tmsps.ne4spring.handler.data.editor.TimestampEditor Maven / Gradle / Ivy

There is a newer version: 999.0.0.0
Show newest version
package com.tmsps.ne4spring.handler.data.editor;

import java.sql.Timestamp;
import org.springframework.beans.propertyeditors.PropertiesEditor;

/**
 * Timestamp 属性处理
 * 
 * @author zhangwei [email protected] ON 2015年7月23日 下午2:08:48
 *
 */
public class TimestampEditor extends PropertiesEditor {
	@Override
	public void setAsText(String text) throws IllegalArgumentException {
		if (text == null || text.equals("")) {
			return;
		} else {
			setValue(Timestamp.valueOf(text));
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy