实现了自定义类型转换器之后,将该类型转换器注册在Web应用中,Struts2框架才可以正常使用该类型转换器。
关于类型转换器的注册方式,主要有一下几种:
A、注册局部类型转换器:仅仅对某个Action的属性起作用。
在Action相同包下新建BigDecimalConverter类
import java.math.BigDecimal;
import java.util.Map;
import org.apache.struts2.util.StrutsTypeConverter;
public class BigDecimalConverter extends StrutsTypeConverter {
@Override
public Object convertFromString(Map context, String[] values, Class toClass) {
if (toClass.equals(BigDecimal.class) && values.length > 0) {
BigDecimal decimal = new BigDecimal(0);
if (null != values[0] && values[0].length() > 0) {
decimal = new BigDecimal(values[0]);
return decimal;
}
}
return null;
}
@Override
public String convertToString(Map context, Object o) {
if (o instanceof BigDecimal) {
return o.toString();
}
return null;
}
}
第一个方法convertFromString,是把字符串转换为BigDecimal类型,这个是在从
前端传递回来的字符串使用。
第二个方法convertToString,是将对象转换为字符串
在action相同目录下新增配置文件
XxxAction-conversion.properties
内容为:
company.longitude=cn.web.BigDecimalConverter
company.latitude=cn.web.BigDecimalConverter
B、注册全局类型转换器:对所有Action的特定类型的属性都会生效。
提供如下格式的文件
文件名: xwork-conversion.properties
内容: 多个“复合类型=对应类型转换器”项组成,如 java.Util.Date=com.aumy.DateConverter
存放位置:WEB-INF/classes/目录下。