我在我的系统中已经在play框架中安装了jpagen模块。哪个成功生成了类文件但我想生成setter和getter函数也用于get函数我使用下面的代码
#{list items:table.columns, as:'item' }
public ${item.columnType} get${item.columnPropertyName} {
return ${item.columnPropertyName};
}
#{/list}
但它以小写的第一个字母生成 例如:getid()
但它应该是getId()
我怎样才能实现这一点.......
答案 0 :(得分:1)
如果这是真正的常规,那么
public ${item.columnType} get${item.columnPropertyName.capitalize()} {
应该有效(它使用capitalize method attached to String)