提交 41b58584 编写于 作者: J Juergen Hoeller

BeanPropertyRowMapper uses US locale for lower-case conversion by default

Issue: SPR-13216
上级 c7fef87e
/* /*
* Copyright 2002-2014 the original author or authors. * Copyright 2002-2015 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -22,6 +22,7 @@ import java.sql.ResultSetMetaData; ...@@ -22,6 +22,7 @@ import java.sql.ResultSetMetaData;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.HashMap; import java.util.HashMap;
import java.util.HashSet; import java.util.HashSet;
import java.util.Locale;
import java.util.Map; import java.util.Map;
import java.util.Set; import java.util.Set;
...@@ -136,9 +137,51 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> { ...@@ -136,9 +137,51 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> {
} }
} }
/**
* Get the class that we are mapping to.
*/
public final Class<T> getMappedClass() {
return this.mappedClass;
}
/**
* Set whether we're strictly validating that all bean properties have been mapped
* from corresponding database fields.
* <p>Default is {@code false}, accepting unpopulated properties in the target bean.
*/
public void setCheckFullyPopulated(boolean checkFullyPopulated) {
this.checkFullyPopulated = checkFullyPopulated;
}
/**
* Return whether we're strictly validating that all bean properties have been
* mapped from corresponding database fields.
*/
public boolean isCheckFullyPopulated() {
return this.checkFullyPopulated;
}
/**
* Set whether we're defaulting Java primitives in the case of mapping a null value
* from corresponding database fields.
* <p>Default is {@code false}, throwing an exception when nulls are mapped to Java primitives.
*/
public void setPrimitivesDefaultedForNullValue(boolean primitivesDefaultedForNullValue) {
this.primitivesDefaultedForNullValue = primitivesDefaultedForNullValue;
}
/**
* Return whether we're defaulting Java primitives in the case of mapping a null value
* from corresponding database fields.
*/
public boolean isPrimitivesDefaultedForNullValue() {
return this.primitivesDefaultedForNullValue;
}
/** /**
* Initialize the mapping metadata for the given class. * Initialize the mapping metadata for the given class.
* @param mappedClass the mapped class. * @param mappedClass the mapped class
*/ */
protected void initialize(Class<T> mappedClass) { protected void initialize(Class<T> mappedClass) {
this.mappedClass = mappedClass; this.mappedClass = mappedClass;
...@@ -147,9 +190,9 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> { ...@@ -147,9 +190,9 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> {
PropertyDescriptor[] pds = BeanUtils.getPropertyDescriptors(mappedClass); PropertyDescriptor[] pds = BeanUtils.getPropertyDescriptors(mappedClass);
for (PropertyDescriptor pd : pds) { for (PropertyDescriptor pd : pds) {
if (pd.getWriteMethod() != null) { if (pd.getWriteMethod() != null) {
this.mappedFields.put(pd.getName().toLowerCase(), pd); this.mappedFields.put(lowerCaseName(pd.getName()), pd);
String underscoredName = underscoreName(pd.getName()); String underscoredName = underscoreName(pd.getName());
if (!pd.getName().toLowerCase().equals(underscoredName)) { if (!lowerCaseName(pd.getName()).equals(underscoredName)) {
this.mappedFields.put(underscoredName, pd); this.mappedFields.put(underscoredName, pd);
} }
this.mappedProperties.add(pd.getName()); this.mappedProperties.add(pd.getName());
...@@ -160,18 +203,20 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> { ...@@ -160,18 +203,20 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> {
/** /**
* Convert a name in camelCase to an underscored name in lower case. * Convert a name in camelCase to an underscored name in lower case.
* Any upper case letters are converted to lower case with a preceding underscore. * Any upper case letters are converted to lower case with a preceding underscore.
* @param name the string containing original name * @param name the original name
* @return the converted name * @return the converted name
* @since 4.2
* @see #lowerCaseName
*/ */
private String underscoreName(String name) { protected String underscoreName(String name) {
if (!StringUtils.hasLength(name)) { if (!StringUtils.hasLength(name)) {
return ""; return "";
} }
StringBuilder result = new StringBuilder(); StringBuilder result = new StringBuilder();
result.append(name.substring(0, 1).toLowerCase()); result.append(lowerCaseName(name.substring(0, 1)));
for (int i = 1; i < name.length(); i++) { for (int i = 1; i < name.length(); i++) {
String s = name.substring(i, i + 1); String s = name.substring(i, i + 1);
String slc = s.toLowerCase(); String slc = lowerCaseName(s);
if (!s.equals(slc)) { if (!s.equals(slc)) {
result.append("_").append(slc); result.append("_").append(slc);
} }
...@@ -183,45 +228,14 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> { ...@@ -183,45 +228,14 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> {
} }
/** /**
* Get the class that we are mapping to. * Convert the given name to lower case.
*/ * By default, conversions will happen within the US locale.
public final Class<T> getMappedClass() { * @param name the original name
return this.mappedClass; * @return the converted name
} * @since 4.2
/**
* Set whether we're strictly validating that all bean properties have been
* mapped from corresponding database fields.
* <p>Default is {@code false}, accepting unpopulated properties in the
* target bean.
*/
public void setCheckFullyPopulated(boolean checkFullyPopulated) {
this.checkFullyPopulated = checkFullyPopulated;
}
/**
* Return whether we're strictly validating that all bean properties have been
* mapped from corresponding database fields.
*/
public boolean isCheckFullyPopulated() {
return this.checkFullyPopulated;
}
/**
* Set whether we're defaulting Java primitives in the case of mapping a null value
* from corresponding database fields.
* <p>Default is {@code false}, throwing an exception when nulls are mapped to Java primitives.
*/
public void setPrimitivesDefaultedForNullValue(boolean primitivesDefaultedForNullValue) {
this.primitivesDefaultedForNullValue = primitivesDefaultedForNullValue;
}
/**
* Return whether we're defaulting Java primitives in the case of mapping a null value
* from corresponding database fields.
*/ */
public boolean isPrimitivesDefaultedForNullValue() { protected String lowerCaseName(String name) {
return primitivesDefaultedForNullValue; return name.toLowerCase(Locale.US);
} }
...@@ -243,7 +257,7 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> { ...@@ -243,7 +257,7 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> {
for (int index = 1; index <= columnCount; index++) { for (int index = 1; index <= columnCount; index++) {
String column = JdbcUtils.lookupColumnName(rsmd, index); String column = JdbcUtils.lookupColumnName(rsmd, index);
PropertyDescriptor pd = this.mappedFields.get(column.replaceAll(" ", "").toLowerCase()); PropertyDescriptor pd = this.mappedFields.get(lowerCaseName(column.replaceAll(" ", "")));
if (pd != null) { if (pd != null) {
try { try {
Object value = getColumnValue(rs, index, pd); Object value = getColumnValue(rs, index, pd);
...@@ -254,15 +268,14 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> { ...@@ -254,15 +268,14 @@ public class BeanPropertyRowMapper<T> implements RowMapper<T> {
try { try {
bw.setPropertyValue(pd.getName(), value); bw.setPropertyValue(pd.getName(), value);
} }
catch (TypeMismatchException e) { catch (TypeMismatchException ex) {
if (value == null && primitivesDefaultedForNullValue) { if (value == null && this.primitivesDefaultedForNullValue) {
logger.debug("Intercepted TypeMismatchException for row " + rowNumber + logger.debug("Intercepted TypeMismatchException for row " + rowNumber + " and column '" +
" and column '" + column + "' with value " + value + column + "' with null value when setting property '" + pd.getName() +
" when setting property '" + pd.getName() + "' of type " + pd.getPropertyType() + "' of type " + pd.getPropertyType() + " on object: " + mappedObject);
" on object: " + mappedObject);
} }
else { else {
throw e; throw ex;
} }
} }
if (populatedProperties != null) { if (populatedProperties != null) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册