我刚开始使用Grails 3.0 RC1并找出小问题。在run-app命令之后,我的应用程序在路径localhost:8080上可用,但在Grails 2.x上,默认情况下正确的路径是localhost:8080 / appname /。在Grails 3.0的文档中,我看到相同的应用程序应该从localhost:8080 / appname /开始。为什么/ appname / suffix在我的情况下丢失了?我有非常简单的测试应用程序,并没有调整配置文件。我该如何解决这个问题?
答案 0 :(得分:1)
根据docs of springboot,您可以配置:
server.context-path= # the context path, defaults to '/'
E.g。添加到application.yml
:
server:
'context-path': '/lol'
要在 lol
上下文中访问您的应用