| Author |
netbeans grails def new not found, yet grails without netbeans can fin def new
|
Jim Smiley
Greenhorn
Joined: Sep 21, 2007
Posts: 8
|
|
I am running the tutorial creating a Book and Author db. The bootstrap is creating data for the Book table. IN Netbeans6.9.1 I get the error in the Bootstrap.groovy file that trying to create data in the Book table The data does not show. When I run a grails project (not in Netbeans plugin ) the def new Book is created and the data is shown in the table list.
============================================
class BootStrap {
def init = { servletContext ->
new Book(author:"Stephen King",title:"The Shining").save()
}
def destroy = {
}
}
===========================
error is at "new"
What is wrong? with my Netbeans.
|
 |
 |
|
|
subject: netbeans grails def new not found, yet grails without netbeans can fin def new
|
|
|