0

I have an existing Grails project. Success run on my computer. And then I add new Controller into this one. I get an error like this:

Repetitive method name/signature for method 'java.lang.Object
withFormat(groovy.lang.Closure)'
Burt Beckwith
  • 75,342
  • 5
  • 143
  • 156
windupurnomo
  • 1,121
  • 1
  • 11
  • 22

1 Answers1

0

Finally I get sollution for my problem by downgrade my JDK from 8 to 7. I do these steps:

  1. Download JDK 7 here
  2. Setup environment variable of JAVA_HOME to JDK 7 (export JAVA_HOME=/usr/local/java/jdk1.7.0_79)
  3. Run these commands to clean and run

grails clean
grails run-app

windupurnomo
  • 1,121
  • 1
  • 11
  • 22