grails 3 war in JBoss EAP 6.2.0 does not work

限于喜欢 提交于 2019-11-29 08:44:30

Looking into the grails 3 source:

https://github.com/grails/grails-core/blob/master/grails-plugin-controllers/src/main/groovy/org/grails/plugins/web/controllers/ControllersGrailsPlugin.groovy#L79

I found the solution. In application.yml add the following configuration:

grails:
    web:
        servlet:
            path: /*

starting with web: into the existing grails: section. Then all requests are working as again as expected.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!