Skip to content
Advertisement

Grails scaffolding does show nothing

I use grails 2.4.4

I added dependenci in my BuildConfig:

JavaScript

and add plugin:

JavaScript

Create domain Person:

JavaScript

And controller:

JavaScript

Also try to use: static scaffold = true, it also doesn’t work. I try to delete my package target.

But in my url (http://localhost:8090/grails-com.learning/person) I see nothing

enter image description here

There is no the plugin:

enter image description here

Advertisement

Answer

See the project at https://github.com/jeffbrown/adamscaffolding.

grails-app/conf/BuildConfig.groovy#L49-L75

(there is no need to mention the scaffolding plugin in the dependencies {} block, the plugins {} block is where to express that)

JavaScript

grails-app/domain/person/Person.groovy

JavaScript

grails-app/controllers/person/PersonController.groovy

JavaScript

That scaffolding behaves as intended.

Advertisement