开发者

Create/Read/Update & Delete views are not being generated

I have a Race class and RaceController class. The Create/Read/Update & Delete views are not being generated when i run the app even thougn i have "def scaffold = true" in the controller class. How can I generate the Create/Read/Update & Delete files

class Race {

    static hasMany = [registrations:Registration]


    String name
    Date startDate
    String city 
    String state 
    BigDecimal distance 
    BigDecimal cost 
    Integer maxRunners = 100000

    sta开发者_高级运维tic constraints = {

        name()
        startDate()
        city()
        state()
        distance()
        cost()
        maxRunners()
    }

}

class RaceController {

    def scaffold = true
}


That should be:

static scaffold = true

not

def scaffold = true


grails generate-views some.package.DomainObject

will created the physical files

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜