史前:更新实体时出现 JDBCExceptionReporterdata exception: string data, right truncation
异常。
我发现这意味着数据对于指定的varchar
.
在service.xml
列中指定如下:
<column name="message" type="String"/>
我在 Liferay 的源代码中找到了ServiceBuilder
这个片段:
else if (colType.equals("String")) {
Map<String, String> hints = ModelHintsUtil.getHints(
_packagePath + ".model." + entity.getName(), colName);
int maxLength = 75;
if (hints != null) {
maxLength = GetterUtil.getInteger(
hints.get("max-length"), maxLength);
}
if (col.isLocalized()) {
maxLength = 4000;
}
if (maxLength < 4000) {
sb.append("VARCHAR(" + maxLength + ")");
}
else if (maxLength == 4000) {
sb.append("STRING");
}
else if (maxLength > 4000) {
sb.append("TEXT");
}
}
现在我的问题是,如何max-length
为我的列定义?