1

create.gsp と edit.gsp に個々のフィールドを作成するために grails scaffolding テンプレートを編集しようとしています

create.gsp に以下を追加すると

<%
        def d = new grails.core.GrailsDomainClass (collegeapplication.Student.class)
        d.persistentProperties.each {
            %>
    ${it}
    <%
        }
    %>

For that matter I unable to resolve class grails.core.GrailsDomainClass am not able to load any of my domain class using any of the common ways using Groovy way to dynamic a class from String or at Get domain class field names

何か案は?

私が望む最終結果は <f:all bean="parentsInfomormation"/> 、generate-allコマンド <f:field bean="person" property="name"/>で各プロパティを生成するのではなく、

4

1 に答える 1