当我使用grails2时,Url将是
http://localhost:8080/myApp/controllerName
当我使用grails 3时。
网址为http://localhost:8080/controllerName
再也没有myapp了。它的设计是什么?
问题2:在我使用Grails中的Restful域生成所有内容后,它总是说
描述资源路径位置类型 该项目未构建,原因是“RequestEnvironmentController [在[工作副本] RequestEnvironment.groovy [在test.environment.manager中[在grails-app / domain [在test-environment-manager]中]]]不存在”。解决问题,然后尝试刷新此项目并构建它,因为它可能不一致
它只能编译83%。
答案 0 :(得分:1)
再也没有myapp了。它的设计是什么?
是。默认情况下,根上下文现在为'/'
。如果您想通过在grails-app/conf/application.yml
中设置上下文路径来覆盖它。
server:
'context-path': '/myApp'