79641513

Date: 2025-05-28 04:46:54
Score: 1.5
Natty:
Report link

This is happening because your *.gsp paths are being handled by GroovyPagesServlet. To fix it, you need to remove GroovyPagesServlet.:

package stackoverflow

class GroovyPagesServletMock {
}
import stackoverflow.GroovyPagesServletMock

// Place your Spring DSL code here
beans = {
    groovyPagesServlet(GroovyPagesServletMock)
}

I got it working this way. Hope this helps!

enter image description here

Sample https://github.com/mkmikael/stackoverflow79641438

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1): Hope this helps
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mikael Lima