フィールド プラグインを使用してフィールド スキャフォールディング コードを変更しようとしています。Twitterのブートストラップもインストールしました。ここで、2 つのフィールドを 1 行に表示したいと考えています。_form.gsp テンプレート ファイルで次のことを行いました。
private renderFieldForProperty(p, owningClass,counter, prefix = "") {
boolean hasHibernate = pluginManager?.hasGrailsPlugin('hibernate')
boolean display = true
boolean required = false
if (hasHibernate) {
cp = owningClass.constrainedProperties[p.name]
display = (cp ? cp.display : true)
required = (cp ? !(cp.propertyType in [boolean, Boolean]) && !cp.nullable && (cp.propertyType != String || !cp.blank) : false)
}
if (display) {
if(counter%2==0){
%><div class="row-fluid"><%
}
%>
<f:field bean="${domainClass.propertyName}" property="${p.name}"/>
<%
counter++
if(counter%2==0){
%></div><%
}
} } %>
生成されたコードは次のようになります。
<div class="row-fluid">
<f:field bean="patient" property="familyName"/>
<f:field bean="patient" property="firstName"/>
</div>
ブラウザでコードを表示しようとすると、次の例外が発生しました。
URI
/patient/create
Class
org.springframework.beans.NotReadablePropertyException
Message
Invalid property 'familyName' of bean class [java.lang.String]: Bean property 'familyName' is not readable or has an invalid getter method: Does the return type of the getter match the parameter type of the setter?
私は何か間違ったことをしたと思います。私は正しいですか?どうすればこれを解決できますか?
ありがとう、フェラス